Skip to content

Instantly share code, notes, and snippets.

@Keith-Hon
Created May 21, 2017 03:35
Show Gist options
  • Save Keith-Hon/761f21391502f79363b6d6aff2438d23 to your computer and use it in GitHub Desktop.
Save Keith-Hon/761f21391502f79363b6d6aff2438d23 to your computer and use it in GitHub Desktop.
[AlertView] #tags:React-Native-iOS
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