Problem using 2 PanGestureHandler simultaneously
See original GitHub issueHello,
I’m currently trying to build a react-native app which is simulating a trackpad.
I should be able to click on a button, move above and then, release the button (or everything).
Everything is working like a charm on Android, but only the parent PanGesture (Move area) is working on IOS, no action triggered when touching the buttons.
Any ideas?
Regards
Issue Analytics
- State:
- Created 4 years ago
- Comments:6
Top Results From Across the Web
Multiple drag and drop simultaneous in React Native
I found a solution, i used react-native-gesture-handle like in the directory doubleDraggable of the example: ...
Read more >Introduction | React Native Gesture Handler - Software Mansion
It is recommended to use Reanimated 2 for animations when using React Native ... If you want to make a gesture handler wait...
Read more >The basics of PanGestureHandler with React Native ...
In this tutorial we'll learn the basics of the PanGestureHandler component (from react-native-gesture-handler package).
Read more >react-native-gesture-handler - Bountysource
PinchGestureHandler and PanGestureHandler not working simultaneously $ 0. Created 2 years ago in software-mansion/react-native-gesture-handler with 12 comments.
Read more >The basics of PanGestureHandler with React Native ... - Morioh
In this tutorial we'll learn the basics of the PanGestureHandler component (from ... We will also play around with some animations thanks to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@oktapodia I’ve build something similar with LongPressGestureHandler + TapGestureHandler. You don’t really need PanGestureHandler as
onGestureEventcan stream you position too 😃Working with the LongpressGestureHandler, thank you for your help! @dsznajder I need the PanGestureHandler to get the velocity as well