Skip to content

Modal component for Android to emulate the React Native iOS version

Notifications You must be signed in to change notification settings

zubricky/react-native-android-modal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

react-native-android-modal

React Native component to emulate Modal for Android. At the time of this release, the Modal component bundled with React Native only supports iOS.

Installation instructions

Install the package

npm install --save react-native-android-modal

Example

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>

Todo

  • Implement animated prop

About

Modal component for Android to emulate the React Native iOS version

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published