How to make React Native Animated.View clickable?
问题 I'm using this react native tinder demo -> https://github.com/brentvatne/react-native-animated-demo-tinder Is it possible to make the cards 'clickable' so it would navigate to another view on click? I've tried wrapping the "Touchable" components around the animated view but doing so disables the animations. Any ideas would be highly appreciated, thanks! 回答1: I guess you can use TouchableX inside the Animated.View <Animated.View> <TouchableOpacity> <View> stuff <View> </TouchableOpacity> <