Modal
The Modal component is a simple way to present content above an enclosing view.
To render the Modal above other components, you'll need to wrap it with the Portal component.
Usage
import * as React from 'react';
import { Modal, Portal, Text, Button, Provider } from 'react-native-paper';
const MyComponent = () => {
const [visible, setVisible] = React.useState(false);
const showModal = () => setVisible(true);
const hideModal = () => setVisible(false);
const containerStyle = {backgroundColor: 'white', padding: 20};
return (
<Provider>
<Portal>
<Modal visible={visible} onDismiss={hideModal} contentContainerStyle={containerStyle}>
<Text>Example Modal. Click outside this area to dismiss.</Text>
</Modal>
</Portal>
<Button style={{marginTop: 30}} onPress={showModal}>
Show
</Button>
</Provider>
);
};
export default MyComponent;
Props
dismissableType:
booleanDefault value:
trueDetermines whether clicking outside the modal dismiss it.
overlayAccessibilityLabelType:
stringDefault value:
'Close modal'Accessibility label for the overlay. This is read by the screen reader when the user taps outside the modal.
styleType:
StyleProp<ViewStyle>Style for the wrapper of the modal. Use this prop to change the default wrapper style or to override safe area insets with marginTop and marginBottom.
themeType:
ReactNativePaper.ThemetestIDType:
string