infinite_scroll_plus 0.0.1
infinite_scroll_plus: ^0.0.1 copied to clipboard
A package to help developer to do add lazy loading or infinite scroll to the listview or use a infinite scrollable listview
infinite_scroll_plus #
A Flutter package that provides infinite scroll functionality for ListViews and GridViews. Supports lazy loading, automatic pagination, and easy customization.
Features #
- Infinite scrolling for Flutter widgets
- Easy integration with ListView and GridView
- Customizable loading indicators
- Lightweight and fast
Usage #
import 'package:infinite_scroll_plus/infinite_scroll_plus.dart';
InfiniteScrollList(
itemCount: items.length,
itemBuilder: (context, index) {
return ListTile(title: Text(items[index]));
},
onLoadMore: () async {
// load more data
},
);