React Native component to emulate Modal for Android. At the time of this release, the Modal component bundled with React Native only supports iOS.
npm install --save react-native-android-modal
var Modal = require('react-native-android-modal');
<Modal
transparent={true}
visible={true}
onShow={() => console.log("show")}
onDismiss={() => console.log("dismiss")}
>
<Text>Check out this Modal on Android</Text>
</Modal>
- Implement animated prop