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
NestedScrollView is now on a diferrent repository, it will also serve as
more general purpose to other different packages that uses
CoordinatorLayout and others stuff.
NestedScrollView is NOT a required dependency, since the anchor point
has been implemented, once the BottomSheet already scrolls itself,
the NestedScrollView is only useful when you are using the BottomSheet
with anchorPoint disable and want to add some nested scroll
(see the NestedScrollView example view)
Now you have to install and attach the NestedScrollView manually on componentDidMount
```
componentDidMount() {
this.bottomSheet.attachNestedScrollChild(this.nestedScroll)
}
```
See the repository for installation instructions https://github.com/cesardeazevedo/react-native-nested-scroll-view
And the NestedScrollView example https://github.com/cesardeazevedo/react-native-bottom-sheet-behavior/blob/master/example/views/NestedScrollView.js
0 commit comments