react-native 原生弹框

2020-06-29  本文已影响0人  喜剧收尾_XWX
import {Alert} from 'react-native';
Alert.alert('提示', '确定要保存修改么?', [
        {
          text: '否',
          onPress: () => {
            NavigationUtil.goBack(this.props.navigation);
          },
        },
        {
          text: '是',
          onPress: () => {
            this.save();
          },
        },
      ]);
上一篇 下一篇

猜你喜欢

热点阅读