-
I follow documentation https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/events
I cannot move card on android but move on web view. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 6 replies
-
why noone here . |
Beta Was this translation helpful? Give feedback.
-
The situation is exactly same as mine. |
Beta Was this translation helpful? Give feedback.
-
@vnxz did you found any workaround? On android is not working even on real device |
Beta Was this translation helpful? Give feedback.
-
Have you guys tried to wrap your app into GestureHandlerRootView ? <GestureHandlerRootView style={{flex: 1}}>
...rest of your app
</GestureHandlerRootView> |
Beta Was this translation helpful? Give feedback.
-
Wrap your app with <GestureHandlerRootView style={{flex: 1}}>
...rest of your app
</GestureHandlerRootView> and put <View style={styles.pageContainer}>
<PanGestureHandler onGestureEvent={eventHandler}>
<Animated.View collapsable={false} style={[styles.animatedCard,cardStyle]}/>
<TinderCard user={data[0]}/>
</Animated.View>
</PanGestureHandler>
</View> |
Beta Was this translation helpful? Give feedback.
-
adding
|
Beta Was this translation helpful? Give feedback.
Have you guys tried to wrap your app into GestureHandlerRootView ?