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
623 stars 210 forks source link

update flutter_staggered_grid_view: ^0.6.1 on develop,please #214

Closed xiaodogaa closed 1 year ago

wilz05 commented 2 years ago

waiting for the same, current version has some issues with OutOfMemory exceptions @EdsonBueno

clragon commented 2 years ago

flutter staggered grid has changed alot during versions so upgrading isnt simple. instead, staggered grid view could be removed as dependency.

wilz05 commented 2 years ago

flutter staggered grid has changed alot during versions so upgrading isnt simple. instead, staggered grid view could be removed as dependency.

true, but basically most of the developers want to have cross axis count to be changed @ the index level.
like staggeredTileBuilder: (int index) => index % 2 == 0 ? new StaggeredTile.fit(2) : new StaggeredTile.fit(1),

If this/similar functionality can be adopted for the PagedGridView or SilverGrid that would be great.

clragon commented 2 years ago

changing the cross axis count cannot be done anymore in the newest version of staggered grid view and the goal of this package isnt to recreate such a feature. so regardless of whether the dependency is upgraded or not, this wont be achieved.