Alert
Launches an alert dialog with the specified title and message.
Optionally provide a list of buttons. Tapping any button will fire the respective onPress callback and dismiss the alert. By default, the only button will be an 'OK' button.
This is an API that works both on Android and iOS and can show static alerts. To show an alert that prompts the user to enter some information, see AlertIOS; entering text in an alert is common on iOS only.
Example
-| iOS | -Android | -
|---|---|
- ![]() |
-
- ![]() |
-
Example
+-
+
- + Function Component Example + +
- + Class Component Example + +
iOS
On iOS you can specify any number of buttons. Each button can optionally specify a style, which is one of 'default', 'cancel' or 'destructive'.
Android
@@ -120,7 +262,7 @@ Alert.alert<alert()
static alert(title, message?, buttons?, options?)
-
