Simple alertbox
import { Alert } from 'react-native'; Alert.alert( 'Route', 'clicked!', [{ text: 'OK', onPress: () => console.log('OK Pressed') }], { cancelable: false } );