A <Modal>
component for react-native. This is still very much a work
in progress and only handles the simplest of cases, ideas and
contributions are very welcome.
Warning: A Modal component is now built into React Native as of v0.10-rc, so this library is no longer necessary. Check out this commit on facebook/react-native for more information!
- Run
npm install react-native-modal --save
- Open your project in XCode, right click on
Libraries
and clickAdd Files to "Your Project Name"
(Screenshot) then choose theRNModal.xcodeproj
(Screenshot) . - Add
libRNModal.a
toBuild Phases -> Link Binary With Libraries
(Screenshot). var Modal = require('react-native-modal');
- At the bottom of your app, add the
<Modal>
element and use itsisVisible
prop to toggle visibility. It needs to be at the bottom so that it appears above all other components when it is visible. If you use theforceToFront
prop, then the position in the component tree does not matter at all - put it wherever you like.
'use strict';
var React = require('react-native');
var Modal = require('react-native-modal');
var { AppRegistry, StyleSheet, View, Text } = React;
class App extends React.Component {
constructor() {
this.state = {
isModalOpen: false
};
}
openModal() {
this.setState({isModalOpen: true});
}
closeModal() {
this.setState({isModalOpen: false});
}
render() {
return (
<View style={styles.page}>
<Text onPress={() => this.openModal()}>
Open Modal.
</Text>
<Modal isVisible={this.state.isModalOpen} onClose={() => this.closeModal()}>
<Text>Hello world!</Text>
</Modal>
</View>
);
}
}
var styles = StyleSheet.create({
page: {
flex: 1,
position: 'absolute',
bottom: 0,
left: 0,
right: 0,
top: 0
}
});
AppRegistry.registerComponent('App', () => App);
If you would prefer to not have to implement openModal()
and closeModal()
, then you can use Modal.Mixin
, then you can replace the definition of App
above with:
var App = React.createClass({
mixins: [Modal.Mixin],
render() {
return (
<View style={styles.page}>
<Text onPress={() => this.openModal()}>
Open Modal.
</Text>
<Modal backdropType="blur" isVisible={this.state.isModalOpen} onClose={() => this.closeModal()}>
<Text>Hello world!</Text>
</Modal>
</View>
);
}
}
Also take a look on react-native-login for an example usage.
Component accepts several self-descriptive properties:
forceToFront
(Bool) - iftrue
, the modal will use a newUIWindow
that will appear aboveNavigatorIOS
and the status bar, but not alerts. Demo here.hideCloseButton
(Bool)backdropType
(String)plain
,none
, orblur
. Default isplain
.backdropBlur
(String) IfbackdropType
isblur
, this can be eitherdark
,light
, orextra-light
. Default islight
. (thanks @kureev for react-native-blur!) Demo here.containerPointerEvents
(String)box-none
,none
,box-only
,auto
. Default isauto
. Set tobox-none
to trigger theonPressBackdrop
callback when the modal body is touched. See pointerEvents.isVisible
(Bool)onClose
(Function)onPressBackdrop
(Function) - callback to be fired when the user taps on the backdropcustomCloseButton
(React Component)customShowHandler
(Function) - uses a react-tween-state wrapper API in order to show the modal. See examplecustomHideHandler
(Function) - uses a react-tween-state wrapper API in order to hide the modal. See example
MIT Licensed