1ToastAndroid.showWithGravity(
2 "All Your Base Are Belong To Us",
3 ToastAndroid.SHORT,
4 ToastAndroid.BOTTOM
5);
6
1import {ToastAndroid} from 'react-native' ;
2
3....
4
5ToastAndroid.showWithGravity(
6 "All Your Base Are Belong To Us",
7 ToastAndroid.SHORT,
8 ToastAndroid.CENTER
9);
10
11....
1npm install react-native-simple-toast --save
2react-native link react-native-simple-toast // only RN < 0.60
3cd ios && pod install