remobile / react-native-simple-button

A Simple react-native button

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Native Button (remobile)

A simple react-native button

Installation

npm install @remobile/react-native-simple-button --save

Usage

Example

{/*登录按钮*/}
<Button onPress={this.doLogin} style={{position: 'absolute', top: 320, left: 180, }} disable={true}>登录</Button>
{/*忘记密码按钮*/}
<Button onPress={this.doShowForgetPassword} style={{position: 'absolute', right: 5, bottom: 5, }} textStyle={{color:'red'}}>找回密码</Button>
{/*注册按钮*/}
<Button onPress={this.doShowRegister} style={{position: 'absolute', left: 5, bottom: 5, }}>注册</Button>

Screencasts

demo

Props

  • onPress: PropTypes.func
  • disabled: PropTypes.bool
  • textStyle: Text.propTypes.style
  • activeOpacity: PropTypes.number

About

A Simple react-native button

License:MIT License


Languages

Language:JavaScript 100.0%