Modal
The Modal component is a way to present content above an enclosing view.
Note: If you need more control over how to present modals over the rest of your app, then consider using a top-level Navigator. Go here to compare navigation options.
import React, { Component } from 'react';
import {
Modal,
Text,
TouchableHighlight,
View
} from 'react-native';
class ModalExample extends Component {
constructor(props) {
super(props);
this.state = { modalVisible: false };
}
setModalVisible(visible) {
this.setState({ modalVisible: visible });
}
render() {
return (
<View style={{ marginTop: 22 }}>
<Modal
animationType={'slide'}
transparent={false}
visible={this.state.modalVisible}
onRequestClose={() => {
alert('Modal has been closed.');
}}>
<View style={{ marginTop: 22 }}>
<View>
<Text>Hello World!</Text>
<TouchableHighlight
onPress={() => {
this.setModalVisible(!this.state.modalVisible);
}}>
<Text>Hide Modal</Text>
</TouchableHighlight>
</View>
</View>
</Modal>
<TouchableHighlight
onPress={() => {
this.setModalVisible(true);
}}>
<Text>Show Modal</Text>
</TouchableHighlight>
</View>
);
}
}
Props
Reference
Props
animationType
The animationType
prop controls how the modal animates.
slide
slides in from the bottomfade
fades into viewnone
appears without an animation
Type | Required |
---|---|
enum('none', 'slide', 'fade') | No |
onRequestClose
The onRequestClose
prop allows passing a function that will be called once the modal has been dismissed.
On the Android platform, this is a required function.
Type | Required |
---|---|
Platform.OS === 'android' ? PropTypes.func.isRequired : PropTypes.func | No |
onShow
The onShow
prop allows passing a function that will be called once the modal has been shown.
Type | Required |
---|---|
function | No |
transparent
The transparent
prop determines whether your modal will fill the entire view. Setting this to true
will render the modal over a transparent background.
Type | Required |
---|---|
bool | No |
visible
The visible
prop determines whether your modal is visible.
Type | Required |
---|---|
bool | No |
animated
Deprecated. Use the animationType
prop instead.
Type | Required |
---|---|
bool | No |