flutter_infinite_scroll_pagination 1.0.0-beta2+1
flutter_infinite_scroll_pagination: ^1.0.0-beta2+1 copied to clipboard
This Flutter package offers effortless infinite scroll loading with just one line of wrapping—no complex setup or controller needed for easy integration.
Introduction #
Experience a whole new level of convenience with just a single line of wrapping—no complex setup or controller required—for effortless infinite scroll loading.
See Also, If you want the change-log by version for this package. refer to Change Log for details.
Usage #
InfiniteScrollPagination(
isEnabled: ...,
onLoadMore: ...,
child: ListView.builder(
shrinkWrap: true,
itemCount: _items.length,
itemBuilder: (context, index) {
return Text(_items[index]);
},
),
),