fluttercandies / extended_nested_scroll_view

extended nested scroll view to fix following issues. 1.pinned sliver header issue 2.inner scrollables in tabview sync issue 3.pull to refresh is not work. 4.do without ScrollController in NestedScrollView's body
MIT License
597 stars 120 forks source link

能不能做到外层NestedScrollView保持bouncing滚动效果 #68

Closed 826327700 closed 2 years ago

826327700 commented 3 years ago

现在的情况是,无论是原生的NestedScrollView还是extended_nested_scroll_view,只要在body里含有滚动类的widget,比如listview,外层NestedScrollView都会失去bouncing滚动效果

yasinarik commented 3 years ago

Here is an issue I opened long ago: #54 (Please upvote it)

I had to use Google translate but I can confirm you.

Normally, I use a NestedScroller for making all of the nested ScrollViews (it can be ListView, Slivers, Grids, etc...) to scroll as one unit.

Thus, I would like to have a behavior that the most outer scroller uses AlwaysScrollableScrollPhysics. This way, it can bounce and be over-scrolled. These two behaviors are essential for UX.

Instagram uses the described behavior on its user profile screen.

I have tried many things to achieve this but I was unsuccessful.

himalaya-nuts commented 3 years ago

Check my PR that fixed this issue: https://github.com/fluttercandies/extended_nested_scroll_view/pull/73

zmtzawqlp commented 2 years ago

the same as https://github.com/fluttercandies/extended_nested_scroll_view/issues/54