-
Notifications
You must be signed in to change notification settings - Fork 422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
6.2.0 breaks vertical scrolling of ScrollView parent #722
Comments
@jwh-hutchison I am facing same issue bro, same issue any update on this 🤔 |
I would recommend just reverting to version 6.1.4 for now, it definitely seems to be something to do with the way that the PanResponders code was changed in the last release https://github.com/callstack/react-native-pager-view/pull/705/files |
We ran into the same thing (6.2.0 breaking vertical scroll on iOS) and had to roll back. |
Sorry, that's on me. Can you try these changes and let me know if it fixes the issue? |
@intergalacticspacehighway i've patched it with your PR and it didn't work for this issue: #713 after installing |
Just to note that #734 works perfectly for me when patched in. You need to remember to rebuild the app through before testing it as it changes native code. |
Is there any solution? facing the same issue in 6.1.4 and also in the latest version. |
I'm also on 6.2.3, and I also get this issue immediately with a fresh expo app and:
The PagerView scrolls horizontally, and the ScrollView scrolls vertically, but it's impossible to scroll the ScrollView vertically when swiping inside the PagerView. |
I am facing the same issue, but I noticed that, when you scroll from up, and before the scroll stops you swiper again over the PagerView, then it scrolls vertically, but rather not horizontally. |
I am also facing this issue with version 6.3.0 |
Facing the same issue. Fixed with |
Thanks @shubhamguptadream11 In case anyone ran into this issue, I've recently upgraded my App to RN 0.73.8 and got this error well but it was fixed bumping the RNPV to |
|
Thanks a lot. This fixed my issue. The issue I had was that using Material Top Tabs Navigator in my expo managed project kept showing the error:
Though together with the version install, I also closed the metro server by doing npx expo start -c
to start the server again with the bundler cache cleared, and also clearing cache in the Expo Go mobile app. |
@leabaertschi Can you provide a sample reproducer in order to validate this in v7.0.0-rc.2 |
Environment
"react-native": "0.71.6",
"react-native-pager-view": "6.2.0",
"react-native-tab-view": "^3.5.1",
Description
I was trying to render
TabView
of react-native-tab-view inside of aScrollView
, but after upgrading to v6.2.0 for pager-view, the vertical scrolling of the scroll view would lock and only adjust if I didn't select the element that was being rendered as a child under therender()
function of the PagerViewAdapter; so if I tried scrolling when selecting aTabBar
it would scroll correctly - if I switched out therender(<SceneView/>)
for a genericView
I could scroll fine.Inside react-native-tab-view/src/TabView:
This PagerView adapter inherits
PagerViewProps
props from react-native-pager-view and after downgrading the library (to "react-native-pager-view": "6.1.4"), the entire page can scroll fine again, I was originally going to pin the bug on react-native-tab-view but it seems that this issue has happened with other components that depend on the library (see: #713)Reproducible Demo
When you use the following code and try to scroll vertically on any elements rendered inside of
_renderTab
nothing will happen. If you downgrade react-native-pager-view to 6.1.4 it will work.The text was updated successfully, but these errors were encountered: