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
Currently, we accept a default ScrollSubrange to use as a fallback. However, as discussed under #900, this makes it challenging to support scrolling forward from the beginning as well as backward from the end when a position is not specified. We need to allow configuring separately default position for forward vs backward scrolling, and apply those after the user input is processed.
Currently, with offset positions we can only support scrolling from the beginning via ScrollPosition.offset(). With keyset positions we support. both using either ScrollPosition.keyset() or the same with its reverse() method called.
The text was updated successfully, but these errors were encountered:
Currently, we accept a default
ScrollSubrange
to use as a fallback. However, as discussed under #900, this makes it challenging to support scrolling forward from the beginning as well as backward from the end when a position is not specified. We need to allow configuring separately default position for forward vs backward scrolling, and apply those after the user input is processed.Currently, with offset positions we can only support scrolling from the beginning via
ScrollPosition.offset()
. With keyset positions we support. both using eitherScrollPosition.keyset()
or the same with itsreverse()
method called.The text was updated successfully, but these errors were encountered: