Even though this document (https://facebook.github.io/react-native/docs/gesture-responder-system.html) states, that touch events are passed down to the children and are only con
You could just use TouchableWithoutFeedback to wrap inner TouchableOpacity.
Something like:
console.log('This is printed always')}>
I can click here console.log('This is printed never')}>
I can click here but the outer onPress is called instead of the inner one