📱 Flutter
Beginner
What is the ListView widget?
Answer
ListView is a scrollable list of widgets arranged linearly. For short, static lists, use ListView(children: [...]). For large or infinite lists, use ListView.builder(), which lazily builds only the widgets currently visible on screen — significantly improving performance and memory usage. ListView.separated() adds a separator widget between items, and ListView.custom() provides full control over the building behavior.