Replies: 1 comment
-
Instead of Pressable, you can use a <TapGestureHandler
onHandlerStateChange={(e) => {
if (e.nativeEvent.state === State.ACTIVE) {
console.log('Pressed');
}
}}
/> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to see only my Pressable answer to my gesture in case I press it, without triggering GestureDetector
Logs:
Beta Was this translation helpful? Give feedback.
All reactions