You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way right now to save scroll position of the list when prepending items to the top of the list?
Right now adding let's say 50 items to the very beginning of the list resets scroll position to 0.0 (Like in ListView, and every other list implementations).
Is there a way to precalculate extent for that added 50 items and add with result position to stay in the previous position?
The text was updated successfully, but these errors were encountered:
Hey @nikita488 , you can take a look at super_paging's BidirectionalPagingListView. It tackles this exact problem with a custom ListView implementation.
Is there any way right now to save scroll position of the list when prepending items to the top of the list?
Right now adding let's say 50 items to the very beginning of the list resets scroll position to 0.0 (Like in ListView, and every other list implementations).
Is there a way to precalculate extent for that added 50 items and add with result position to stay in the previous position?
The text was updated successfully, but these errors were encountered: