We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
But as soon as I scroll even a little bit down, taps will trigger onPress in the children?
Any idea what could cause those events in children not to fire?
The text was updated successfully, but these errors were encountered:
@duro did you end up figuring out why this is? Having the exact same problem
Sorry, something went wrong.
Had the same issue, found out that
_handleMoveShouldSetPanResponder(e, gestureState) { return !this.state.isScrollFree; }
is preventing the onPress event to trigger
What I did is modifying the function to check if dx/dy are not 0
_handleMoveShouldSetPanResponder(e, gestureState) { return !(gestureState.dx === 0 && gestureState.dy === 0) && !this.state.isScrollFree; }
Not sure if it's the right way to handle this, but it seems to work for now !
Thanks a lot @LimAlbert ! It work
No branches or pull requests
But as soon as I scroll even a little bit down, taps will trigger onPress in the children?
Any idea what could cause those events in children not to fire?
The text was updated successfully, but these errors were encountered: