美文网首页
react-native 之警告窗、提示框

react-native 之警告窗、提示框

作者: 以德扶人 | 来源:发表于2017-05-15 09:50 被阅读717次

在导入的地方导入Alert
这个是官方的,支持双端平台。用法也简单易懂。

onPress={()=>Alert.alert('确定删除吗?','',[
                                      {text:'确定',onPress:()=>this.cancel(BusinessLoopID)},
                                      {text:'取消',onPress:()=>this.refs.toast.show('您取消了删除',1000)}
                                  ])}

相关文章

网友评论

      本文标题:react-native 之警告窗、提示框

      本文链接:https://www.haomeiwen.com/subject/nhncxxtx.html