react-native-macos
react-native-macos copied to clipboard
Nested <Text> elements block onPress handler
<Text>
<Text onPress={() => alert("Pressed")}>Press me</Text>
</Text>
The child Text
element's onPress function will never be called regardless of how hard you mash it. 😉
I'm investigating why this happens and will see if I can fix it myself.