react-native gestureHandler memodalisasi iOS onpress

// little trick to resolve this issue inside modal
import { TouchableWithoutFeedback } from 'react-native';
import { RectButton } from 'react-native-gesture-handler';
<TouchableWithoutFeedback onPress={...}
    <RectButton>
         ...
    </RectButton>
</TouchableWithoutFeedback>
GutoTrosla