diff --git a/releases/next/docs/modal.html b/releases/next/docs/modal.html index a6df4d32a72..8677024e422 100644 --- a/releases/next/docs/modal.html +++ b/releases/next/docs/modal.html @@ -44,7 +44,7 @@ class ModalExample extends /View> ); } -}
DeprecatedUse the animationType prop instead.
The animationType prop controls how the modal animates.
slide slides in from the bottomfade fades into viewnone appears without an animationThe 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.
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 onOrientationChange callback is called when the orientation changes while the modal is being displayed.
+}
DeprecatedUse the animationType prop instead.
The animationType prop controls how the modal animates.
slide slides in from the bottomfade fades into viewnone appears without an animationThe 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 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 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.
You can edit the content above on GitHub and send us a pull request!
Examples # | Edit on GitHub |
Requests focus for the given input or view. The exact behavior triggered -will depend on the platform and type of view.
Removes focus from an input or view. This is the opposite of focus().
You can edit the content above on GitHub and send us a pull request!