Component - ListView.builder
ListView.builder creates a scrollable list of items efficiently. It builds only the visible items on the screen, saving memory and improving performance when the list is long.
ListView.builder creates a scrollable list of items efficiently. It builds only the visible items on the screen, saving memory and improving performance when the list is long.
Scaffold ├─ AppBar └─ ListView.builder └─ ItemBuilder (builds each list item widget)