导入
import Toast, {DURATION} from 'react-native-easy-toast'
render的时候引入
<Toast //提示
ref="toast"
style={{backgroundColor:'gray'}}
position='center'
positionValue={200}
opacity={0.6}
textStyle={{color:'white'}}
/>
使用
this.refs.toast.show('消息列表获取失败',1000);
网友评论