react-native按钮组件Button

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

react-native学习交流QQ群:806870562


效果图

react-native按钮组件Button_第1张图片

代码示例

import React, {Component} from 'react';
import {
    StyleSheet,
    View,
    Button,
    Alert
} from 'react-native';

type Props = {};
export default class ButtonPage extends Component {
    render() {
        return(
            

                
                    

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