rcerrejon
5/10/2017 - 9:30 AM

Simple alertbox

Simple alertbox

import { Alert } from 'react-native';

Alert.alert(
  'Route',
  'clicked!',
  [{ text: 'OK', onPress: () => console.log('OK Pressed') }],
  { cancelable: false }
);