Same problem in import {TouchableOpacity} from 'react-native-gesture-handler' and import {TouchableWithoutFeedback} from 'react-native-gesture-handler'. But used import {TouchableOpacity} from 'react-native' and import {TouchableWithoutFeedback} from 'react-native' show the view.
A very quick fix for this is to wrap your touchable opacity from rngh with a view. Put your absolute positions in the view container, and the rest of your stylings in the touchable opacity.
Most helpful comment
Same problem in
import {TouchableOpacity} from 'react-native-gesture-handler'andimport {TouchableWithoutFeedback} from 'react-native-gesture-handler'. But usedimport {TouchableOpacity} from 'react-native'andimport {TouchableWithoutFeedback} from 'react-native'show the view.