Flutter Performance Tip
May 6, 2023
In Flutter 💙, always try to use the Listview.builder instead of Listview.
Because Listview renders all the list items at once even if they are not visible to the user.
On the other hand, Listview.builder renders only those list items which are visible to the user and renders them when needed.
I hope this article was helpful to you. Thank you for taking the time to read it. Your feedback and suggestions are always welcome.