在app上做调查问卷,让用户答问题的时候,如果该题为必答题,用户没有答题的话则弹出提示框,让用户答完题后再跳转到下一题
使用 react-native-easy-toast 组件
https://github.com/crazycodeboy/react-native-easy-toast
安装
yarn add react-native-easy-toast
使用
this.state = {
position: 'bottom',
style:{},
}
<Toast ref="toast" style={{backgroundColor:'#cccccc'}} position={this.state.position}/>
let text = '提示框内容'
this.refs.toast.show(text, DURATION.LENGTH_LONG)