yarn add https://github.com/HarvestProfit/react-native-modal-patch.git
cd ios && pod install
This is the same API as the react native modal https://facebook.github.io/react-native/docs/modal#docsNav.
import Modal from 'react-native-modal-patch';
//....
render() {
return (
<Modal
animationType="slide"
presentationStyle="pageSheet" // <-- Swipe down/dismiss works now!
visible={this.state.modalVisible}
onDismiss={() => this.setModalVisible(false)} // <-- This gets called all the time
>
{/* modal contents */}
</Modal>
);