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
Hi! This is a great package already and I am grateful to you for doing all this work. I've seen many issues from you for 2 years solving this problem.
I almost have the desired behavior. If you can modify the package to allow using any custom physics or AlwaysScrollableScrollPhysicsfor outer scroller, my work will be done.
Currently, even though there is a physics parameter for NestedScrollView, changing it doesn't work.
Expected Behavior: (For example the iOS version of the Instagram app --> go to profile screen)
Inner scroller should not bounce (or cannot be over scrolled) on the top edge (leading edge). When scrolling to the top of the page if the inner scroller reaches to minScrollExtent, it should clamp. Currently, I use ClampedScrollPhysics to stop it bounce or be over scrolled. This problem is resolved as you already said.
The outer scroller can be over-scrolled or should bounce on the top edge if there is momentum. Like a pull to refresh mechanism and also I just want it to bounce instead of clamping.
Inner scroller should bounce when reached to the bottom edge. I use my own scroll to load more mechanism by the way.
The scroll friction should be lowered and the scroll detection threshold should be lowered too. This will improve the ease of use. Of course, if custom physics can be applied, I can fine-tune it by myself.
Hi! This is a great package already and I am grateful to you for doing all this work. I've seen many issues from you for 2 years solving this problem.
I almost have the desired behavior. If you can modify the package to allow using any custom physics or
AlwaysScrollableScrollPhysics
for outer scroller, my work will be done.Currently, even though there is a
physics
parameter forNestedScrollView
, changing it doesn't work.Expected Behavior: (For example the iOS version of the Instagram app --> go to profile screen)
Inner scroller should not bounce (or cannot be over scrolled) on the top edge (leading edge). When scrolling to the top of the page if the inner scroller reaches to
minScrollExtent
, it should clamp. Currently, I useClampedScrollPhysics
to stop it bounce or be over scrolled. This problem is resolved as you already said.The outer scroller can be over-scrolled or should bounce on the top edge if there is momentum. Like a
pull to refresh
mechanism and also I just want it to bounce instead of clamping.Inner scroller should bounce when reached to the bottom edge. I use my own
scroll to load more
mechanism by the way.The scroll friction should be lowered and the scroll detection threshold should be lowered too. This will improve the ease of use. Of course, if custom physics can be applied, I can fine-tune it by myself.
Sample video of the current situation:
Nested Scroll Physics - streamable.com -
Sorry, Streamable.com deleted the videos due to prescription
Instagram example:
Instagram Profile Screen Nested Scrolling (Bounces and Can Be Over Scrolled) -
Sorry, Streamable.com deleted the videos due to prescription
A Basic Reproducible Code:
The text was updated successfully, but these errors were encountered: