react-native-pure-button
v2.0.9
Published
react native button
Downloads
19
Readme
react-native-pure-button
pure button, without any style.
Installation
npm install --save react-native-pure-button
Example
import Button from 'react-native-pure-button'
class Example extends Component {
render() {
return (
<Button
disabled={boolean}
style={...}
textStyle={...}
activeOpacity={number}
disabledStyle={...}
disabledTextStyle={...}
disabledActiveOpacity={number}
onPress={}
onLongPress={}
>
hello world
</Button>
)
}
}