react-native弹窗Alert

学习交流:https://gitee.com/potato512/Learn_ReactNative

react-native学习交流QQ群:806870562


效果图


代码示例

import React from 'react';
import {View, Text, Button, Alert, AlertIOS} from "react-native";

const title = "温馨提示";
const message = '要下雨了,记得带伞'

export default class AlertPage extends React.Component {

  constructor(props) {
      super(props);
      _this = this;
      this.state = {
          inputText:'',
      };
  }

   render(){
     return(
       
         Alert的使用
         



你可能感兴趣的:(react-native学习,react,react-native,Alert,alertIOS)