Reputation: 81
How can I implement lazy loading with Staggered Grid View in Flutter. https://pub.dev/packages/flutter_staggered_grid_view is not working well by list of images. GridView.builder is working well and GridView is loading more images when scroll reaches to bottom but unfortunately flutter_staggered_grid_view is not.
Upvotes: 8
Views: 1638
Reputation: 6737
AFAIK, there is an open issue regarding built-in support for staggered view in Flutter. Unfortunately, there are numerous reports about performance to have very low especially when loading large list of images/contents. This could be the reason about the issue you are having.
There is also an alternative by using another package called waterfall_flow.
Although both have drawbacks as also mentioned in this thread.
Upvotes: 0