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
Change import of Touchable opacity from
import { TouchableOpacity } from 'react-native-gesture-handler';
To the following and it will now all be fine!
import { TouchableOpacity } from 'react-native';