-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
Different behaviour panResponder inside scrollview on android and ios #21894
Comments
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as "For Discussion" or "Good first issue" and I will leave it open. Thank you for your contributions. |
Hello there 👋 this issue seems to have been inactive for the past few weeks. Because of this, it's likely that the issue is not a high priority anymore or it has been solved by OP; for these reasons, we'll close it. But please, if it's actually still an issue with 0.59 please comment below and we can reopen it or please send us a Pull Request with a fix 😊 |
I just created an empty 0.59.1 project (using react-native-cli), pasted the code from the snack above, and can confirm, the issue persists. |
I have this too |
Can you test it against 0.59.9 and against the 0.60rc? In the last couple patches there were quite a few commits related to ScrollViews |
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions. |
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please feel free to create a new issue with up-to-date information. |
Environment
Description
I've made a simple demo which shows different behaviour between ios and android when using
PanResponder
on aView
inside aScrollView
.iOS: If I scroll over the red square, the panResponder triggers
onPanResponderTerminate
, so the ScrollView takes overAndroid: If I scroll over the red square, the panResponder triggers
onPanResponderMove
, so the ScrollView doesn't scroll.I don't know which one is the right behaviour, but I'd like to reproduce the iOS behaviour for both.
Reproducible Demo
https://snack.expo.io/@svrnlombaert/panresponder-behaviour-on-scroll
Android behaviour:
https://i.imgur.com/UXjajkr.gifv
iOS behaviour:
https://i.imgur.com/4YImWKL.gifv
The text was updated successfully, but these errors were encountered: