Created
May 21, 2017 03:35
-
-
Save Keith-Hon/761f21391502f79363b6d6aff2438d23 to your computer and use it in GitHub Desktop.
[AlertView] #tags:React-Native-iOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alert.alert( | |
'Alert Title', | |
'My Alert Msg', | |
[ | |
{text: 'Ask me later', onPress: () => console.log('Ask me later pressed')}, | |
{text: 'Cancel', onPress: () => console.log('Cancel Pressed'), style: 'cancel'}, | |
{text: 'OK', onPress: () => console.log('OK Pressed')}, | |
]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment