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
When dragging down the cupertino bottomsheet down the listview inside the bottomsheet also gets dragged down.
The difference gets bigger as you drag down. Could we fix this and totally sync the behavior.
Also, in all good applications I have seen, when starting scrolling up the inner listview, when scroll is not at upper edge, it should not drag down the bottomsheet. The bottomsheet should get dragged down only when the scroll of its inner listview is at the upper edge. So if a user has the listview scrolled somewhere in the middle, and then wants to close the bottomsheet, he will need one tap and scroll up, then release the tap, and then do another tap and scroll up.
The text was updated successfully, but these errors were encountered:
I encountered the same issue, and I found that it was caused by the behavior of the physics, as it defaults to using BouncingScrollPhysics. So, I changed it to ClampingScrollPhysics, which indeed solved the aforementioned problem. However, this introduced a new issue: while I can drag down normally, when I try to drag back up, it immediately jumps to the top. This issue has been bothering me for two days.
When dragging down the cupertino bottomsheet down the listview inside the bottomsheet also gets dragged down.
The difference gets bigger as you drag down. Could we fix this and totally sync the behavior.
Also, in all good applications I have seen, when starting scrolling up the inner listview, when scroll is not at upper edge, it should not drag down the bottomsheet. The bottomsheet should get dragged down only when the scroll of its inner listview is at the upper edge. So if a user has the listview scrolled somewhere in the middle, and then wants to close the bottomsheet, he will need one tap and scroll up, then release the tap, and then do another tap and scroll up.
The text was updated successfully, but these errors were encountered: