加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

react-native按钮组件Button

发布时间:2020-12-15 06:27:51 所属栏目:百科 来源:网络整理
导读:学习交流:https://gitee.com/potato512/Learn_ReactNative react-native学习交流QQ群:806870562 效果图 代码示例 import React,{Component} from 'react';import { StyleSheet,View,Button,Alert} from 'react-native';type Props = {};export default cla

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

react-native学习交流QQ群:806870562


效果图


代码示例

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

type Props = {};
export default class ButtonPage extends Component<Props> {
    render() {
        return(
            <View style={{marginTop:20,marginHorizontal:10}}>

                <View style={styles.clickButtonStyle}>
                    <Button title={"点我"} color={'green'} onPress={buttonClick}/>
                </View>


                <Button title={"单击"} onPress={() => {
                    Alert.alert("单击按钮");
                }} />

            </View>
        );
    };
}

const buttonClick = () => {
    Alert.alert("点击了按钮");
};

const styles = StyleSheet.create({
   clickButtonStyle: {
       margin: 10,height: 40,backgroundColor: '#E6E6FA',borderRadius: 10,borderWidth: 1,borderColor: '#7FFF00',},});

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读