Hello, just test 1.1.0 in our project
import { TouchableOpacity } from 'react-native-gesture-handler';
...
<TouchableOpacity
onPress={onPress}
style={[styles.touchable, style]}
/>
not work as expected (in RN Touchable work)
You have imported wrong class TouchableOpacity it is not a class from react-native-gesture-handler you have to use
import { TapGestureHandler } from 'react-native-gesture-handler';
or
import { TouchableOpacity } from 'react-native';
@fouad1994 this is new feature in 1.1.0
https://kmagiera.github.io/react-native-gesture-handler/docs/component-touchables.html
Ah ok Sorry I don't know that please can you take a view for my issue may you can help me?
https://github.com/kmagiera/react-native-gesture-handler/issues/485
@fouad1994 as i understand this is not issue, post it on stackoverflow with your code - more faster way to make your code work as expected))
Thanks!