flutter_staggered_grid_view
flutter_staggered_grid_view copied to clipboard
SliverMasonryGrid.extent scroll up jank
When using the SliverMasonryGrid.extent
, and the first row is out of the screen, scrolling up will cause jank and the scroll bar to jump to the top of the view.
The child widgets have a dynamic height, so I have tried using AutomaticKeepAlive
on the child widgets with no change.
The problem also occurred in SliverList, and adding AutomaticKeepAlive
fixed the issue.