UNPKG

react-native-awesome-components

Version:
17 lines (16 loc) 440 B
import { Alert } from "react-native"; export const alertDialog = (onSuccess) => { Alert.alert( 'Verify', 'Are you sure you want to perform the action?', [ { text: 'No', onPress: () => console.warn('No Pressed'), style: 'cancel', }, { text: 'Yes', onPress: () => onSuccess() }, ], { cancelable: false }, ); }