React Native: Text onPress not working on android
I have the following code: <Text onPress={() => console.log(‘this won\’t print’)}>Dumb text</Text> According to React Native’s documentation, this works great in both iOS and Android, however when I run it myself, it only works on iOS, while Android acts as if the onPress prop doesn’t exist at all. I know I can use TouchableOpacity (all… Read More React Native: Text onPress not working on android