import Toast from 'react-native-simple-toast';
Toast.show(`PLAY SERVICES NOT AVAILABLE`, Toast.LONG)
Try with this. if not work then let me know which type of error you got?
You can also use Platform base like this
if(Platform.OS == 'ios'){
Toast.show(`PLAY SERVICES NOT AVAILABLE`, Toast.LONG)
}else{
ToastAndroid.showWithGravityAndOffset('PLAY SERVICES NOT AVAILABLE',ToastAndroid.LONG, ToastAndroid.BOTTOM, 25,50)
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…