React Native Button使用

前端之家收集整理的这篇文章主要介绍了React Native Button使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

属性

accessibilityLabel string
用于显示可访问性功能的文本
color color
文本的颜色(IOS),或按钮的背景颜色(Android)
disabled bool
If true,禁用该组件任何交互
onPress function用户点击按钮时要调用的处理程序
title string
显示在button上的文案

实例:

import React,{
    Component,} from 'react';

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

const onButtonPress = () => {
  Alert.alert('Button has been pressed!');
};

class ButtonComp extends Component {
  render() {
    return (
        <Button
          onPress={onButtonPress}
          title="I Am Disabled"
          accessibilityLabel="See an informative alert"
        />
    );
  }
}
原文链接:https://www.f2er.com/react/305598.html

猜你在找的React相关文章