Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sahlhoff/rn-bootstrap-buttons

React Native Bootstrap Buttons
https://github.com/sahlhoff/rn-bootstrap-buttons

bootstrap-buttons react-bootstrap-components react-native

Last synced: 12 days ago
JSON representation

React Native Bootstrap Buttons

Awesome Lists containing this project

README

        

# RN Bootstrap Buttons
Bootstrap style buttons for react native

![bootstrap buttons](https://raw.githubusercontent.com/sahlhoff/rn-bootstrap-buttons/master/button-examples.png)

## Installation

```
npm install rn-bootstrap-buttons --save
```

## Usage

```js
var Button = require('rn-bootstrap-buttons');

class helloWorld extends Component {
render() {
return (

Default Buttons

primary
secondary
success
info
warning
danger

Outline Buttons

primary outline
secondary outline
success outline
info outline
warning outline
danger outline

Custom Buttons
custom button

);
}

btnClick() {
console.log('click');
}

}

```