手记

React Native入门(二):简单点击按钮提示框例子

效果:

代码:

import React, { Component } from 'react';

import { AppRegistry, Text, Button, Alert } from 'react-native';



export default class PizzaTranslator extends Component {

    render() {

        return (

            <Button

                onPress={() => {

                    Alert.alert("你点击了按钮!");

                }}

                title="点我!"

            />

        );

    }

}
0人推荐
随时随地看视频
慕课网APP