https://github.com/st0ffern/react-native-nativebutton
Native button for iOS and Android
https://github.com/st0ffern/react-native-nativebutton
android ios nativebutton react-native react-native-button
Last synced: 4 months ago
JSON representation
Native button for iOS and Android
- Host: GitHub
- URL: https://github.com/st0ffern/react-native-nativebutton
- Owner: st0ffern
- Created: 2016-07-15T07:07:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-07T06:13:33.000Z (almost 8 years ago)
- Last Synced: 2025-09-09T11:34:58.139Z (5 months ago)
- Topics: android, ios, nativebutton, react-native, react-native-button
- Language: JavaScript
- Size: 61.5 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## react-native-nativebutton  []() [](https://github.com/semantic-release/semantic-release)
[](https://greenkeeper.io/)
This provides native button responses for each platform (iOS and Android)
Android = TouchableNativeFeedback
iOS = TouchableOpacity
Nothing more, only the native feeling! :)
## Installation
```npm i -S react-native-nativebutton``` https://www.npmjs.com/package/react-native-nativebutton
## Props
- `children` **(required)**: the content to negate.
## Usage Examples
```js
import Button from "react-native-nativebutton"
class Example extends Component{
render(){
return (
{'My button'}
)
}
}
```