美文网首页
react-native 原生弹框

react-native 原生弹框

作者: 喜剧收尾_XWX | 来源:发表于2020-06-29 19:14 被阅读0次
import {Alert} from 'react-native';
Alert.alert('提示', '确定要保存修改么?', [
        {
          text: '否',
          onPress: () => {
            NavigationUtil.goBack(this.props.navigation);
          },
        },
        {
          text: '是',
          onPress: () => {
            this.save();
          },
        },
      ]);

相关文章

网友评论

      本文标题:react-native 原生弹框

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