Answers for "how to show a toast in react native"

2

toast in react native

import {ToastAndroid} from 'react-native' ;

.... 

ToastAndroid.showWithGravity(
	"All Your Base Are Belong To Us",
    ToastAndroid.SHORT,
    ToastAndroid.CENTER
);

....
Posted by: Guest on January-02-2021
0

react native toast

npm install react-native-simple-toast --save
react-native link react-native-simple-toast // only RN < 0.60
cd ios && pod install
Posted by: Guest on July-31-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language