flutter_staggered_grid_view
flutter_staggered_grid_view copied to clipboard
MasonryGridView.count have issue.. it cut off the list of the listview when item count are many..and height become too large
How to fix this problem
@rasel3413 or anyone who finds this issue. Are you using MasonryGridView.count in a scrollable widget such as ListView or CustomScrollView? If yes, then pass down a scrollController from the parent widget to the MasonryGrid and this should give the grid enough information about the scroll status and the problem would be resolved.
I just increase the count which solve my problem. MasonryGridView.count( crossAxisCount: _crossAxisCount, itemCount: _itemCount + 1,