Skip to content

Instantly share code, notes, and snippets.

@rcerrejon
Created May 10, 2017 09:30
Show Gist options
  • Save rcerrejon/715b774ad8161d88e3b4a6b7e5004135 to your computer and use it in GitHub Desktop.
Save rcerrejon/715b774ad8161d88e3b4a6b7e5004135 to your computer and use it in GitHub Desktop.
Simple alertbox
import { Alert } from 'react-native';
Alert.alert(
'Route',
'clicked!',
[{ text: 'OK', onPress: () => console.log('OK Pressed') }],
{ cancelable: false }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment