EdsonBueno / infinite_scroll_pagination

Flutter package to help you lazily load and display pages of items as the user scrolls down your screen.
https://pub.dev/packages/infinite_scroll_pagination
MIT License
626 stars 213 forks source link

[Feature Request] Extension packages? #279

Closed clragon closed 7 months ago

clragon commented 1 year ago

Instead of directly depending on flutter_staggered_grid_view and potentially other packages, maybe we could create extension packages? e.g. infinite_scroll_pagination_staggered_grid which could contain all the different wrappers for flutter_staggered_grid_view. This would keep our dependencies clean and people would not have to depend on packages they might not need.

The other day I also implemented a paged grouped list view, so that could be another extension package.

clragon commented 1 year ago

I would be up for helping with implementing wrappers for the other grids in flutter_staggered_grid_view.

I would suggest we export the appendix builder helpers so we could use them in extensions. Though I think we should export those anyways so people can build custom paged views easily.