Skip to content

Instantly share code, notes, and snippets.

@yoandresaav
Created June 6, 2021 00:27
Show Gist options
  • Save yoandresaav/8e4a64913dc00aa5890b497d3962889d to your computer and use it in GitHub Desktop.
Save yoandresaav/8e4a64913dc00aa5890b497d3962889d to your computer and use it in GitHub Desktop.
import {
ToastAndroid,
Platform,
AlertIOS,
} from 'react-native';
function notifyMessage(msg: string) {
if (Platform.OS === 'android') {
ToastAndroid.show(msg, ToastAndroid.SHORT)
} else {
AlertIOS.alert(msg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment