Last updated:
0 purchases
marine
This is an animated grid view with pagination. Implemented by SliverGrid.
If you need an animated list view please check in flutter.
Or if you need an animated list view with pagination you can easily give your grid item a large with to make it a list.
Flutter doesn't have an animated GridView, when you add or remove an element from a grid,
it is hard to know where you added or removed.
Features #
Animated sliver Grid view.
Pagination, scroll down to fetch new page.
Easy to pop a widget from inside a grid or return it back.
Usage #
GridController gridController = GridController(pageFetcher: fetchList);
...
PagedGrid(
maxCrossAxisExtent: 200,
childAspectRatio: 1.8,
gridController: gridController,
itemBuilder: (ctxt, item, index) {
Widget row = itemView(index: index, data: item);
return row;
});
copied to clipboard
TextDivider(child: const Text('Divider'))
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.