flutter_lazy_loader 1.0.3 flutter_lazy_loader: ^1.0.3 copied to clipboard
A lazily loaded list for flutter. Allows for loading data in small chunks at a time instead of everything at once.
A lazy loading list for use with Flutter.
Getting started #
- Install package. See the installation tab.
- Use it. See the example tab.
Basic Usage #
LazyLoadingList<int>(
dataLoader: _dataloader,
listTile: _listTile,
)