React-Native gesturehandler modaliser 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