The Modal component is a simple 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.
Use the animationType
prop instead.
The animationType
prop controls how the modal animates.
slide
slides in from the bottomfade
fades into viewnone
appears without an animationDefault is set to none
.
The onShow
prop allows passing a function that will be called once the modal has been shown.
The transparent
prop determines whether your modal will fill the entire view. Setting this to true
will render the modal over a transparent background.
The visible
prop determines whether your modal is visible.
The hardwareAccelerated
prop controls whether to force hardware acceleration for the underlying window.
The onRequestClose
callback is called when the user taps the hardware back button.
The onOrientationChange
callback is called when the orientation changes while the modal is being displayed.
The orientation provided is only 'portrait' or 'landscape'. This callback is also called on initial render, regardless of the current orientation.
The presentationStyle
prop controls how the modal appears (generally on larger devices such as iPad or plus-sized iPhones).
See https://developer.apple.com/reference/uikit/uimodalpresentationstyle for details.
fullScreen
covers the screen completelypageSheet
covers portrait-width view centered (only on larger devices)formSheet
covers narrow-width view centered (only on larger devices)overFullScreen
covers the screen completely, but allows transparencyDefault is set to overFullScreen
or fullScreen
depending on transparent
property.
The supportedOrientations
prop allows the modal to be rotated to any of the specified orientations.
On iOS, the modal is still restricted by what's specified in your app's Info.plist's UISupportedInterfaceOrientations field.
When using presentationStyle
of pageSheet
or formSheet
, this property will be ignored by iOS.
Improve this page by sending a pull request!