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
Scrollbars have a very jerky movement in lazy layouts when items have different sizes along the scroll axis; this is a fundamentally unsolvable problem, because we don't know the sizes of the items outside of composition and can't know them.
As a result, the scrollbar thumb changes size and position as you scroll along. The same behaviour can be seen with Android's RecyclerView, which has the same "issue". However, the RecyclerView does some smoothing, so this is a lot less jarring while scrolling. We should try to do the same thing...
The text was updated successfully, but these errors were encountered:
Scrollbars have a very jerky movement in lazy layouts when items have different sizes along the scroll axis; this is a fundamentally unsolvable problem, because we don't know the sizes of the items outside of composition and can't know them.
As a result, the scrollbar thumb changes size and position as you scroll along. The same behaviour can be seen with Android's
RecyclerView
, which has the same "issue". However, theRecyclerView
does some smoothing, so this is a lot less jarring while scrolling. We should try to do the same thing...The text was updated successfully, but these errors were encountered: