Component - Infinite scrolling
This UI component shows a list that loads more items automatically when you scroll to the bottom. It feels like the list never ends because new items keep appearing as you scroll down.
This UI component shows a list that loads more items automatically when you scroll to the bottom. It feels like the list never ends because new items keep appearing as you scroll down.
Scaffold ├─ AppBar └─ ListView.builder ├─ ListTile (item 0) ├─ ListTile (item 1) ├─ ... └─ CircularProgressIndicator (loading more)