Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/BhavanPatel/react-native-easy-checkbox
Simple CheckBox for react-native
https://github.com/BhavanPatel/react-native-easy-checkbox
Last synced: 5 days ago
JSON representation
Simple CheckBox for react-native
- Host: GitHub
- URL: https://github.com/BhavanPatel/react-native-easy-checkbox
- Owner: BhavanPatel
- Created: 2017-09-25T05:14:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-30T06:07:19.000Z (about 7 years ago)
- Last Synced: 2024-11-13T12:13:03.710Z (29 days ago)
- Language: Objective-C
- Size: 613 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-react-native - react-native-easy-checkbox ★2 - Simple CheckBox for react-native (Components / UI)
- awesome-react-native - react-native-easy-checkbox ★2 - Simple CheckBox for react-native (Components / UI)
- awesome-reactnative-ui - react-native-easy-checkbox - native|<ul><li>Last updated : 2 years ago</li><li>Stars : 2</li><li>Open issues : 0</li></ul>|![](https://nodei.co/npm/react-native-easy-checkbox.png?downloads=true&downloadRank=true&stars=true)| (Others)
- awesome-react-native - react-native-easy-checkbox ★2 - Simple CheckBox for react-native (Components / UI)
- awesome-reactnative-ui - react-native-easy-checkbox - native|<ul><li>Last updated : 2 years ago</li><li>Stars : 2</li><li>Open issues : 0</li></ul>|![](https://nodei.co/npm/react-native-easy-checkbox.png?downloads=true&downloadRank=true&stars=true)| (Others)
- awesome-react-native - react-native-easy-checkbox ★2 - Simple CheckBox for react-native (Components / UI)
README
# react-native-easy-checkbox
[![NPM version](https://img.shields.io/npm/v/react-native-easy-checkbox.svg)](https://www.npmjs.com/package/react-native-easy-checkbox)[![npm](https://img.shields.io/npm/dw/react-native-easy-checkbox.svg)](https://github.com/BhavanPatel/react-native-easy-checkbox)
[![GitHub issues](https://img.shields.io/github/issues/BhavanPatel/react-native-easy-checkbox.svg)](https://github.com/BhavanPatel/react-native-easy-checkbox/issues)
[![GitHub forks](https://img.shields.io/github/forks/BhavanPatel/react-native-easy-checkbox.svg)](https://github.com/BhavanPatel/react-native-easy-checkbox/network)
[![GitHub stars](https://img.shields.io/github/stars/BhavanPatel/react-native-easy-checkbox.svg)](https://github.com/BhavanPatel/react-native-easy-checkbox/stargazers)[![NPM](https://nodei.co/npm/react-native-easy-checkbox.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/react-native-easy-checkbox/)
Simple CheckBox for react-native
## Installation in project
```bash
npm install react-native-easy-checkbox --savereact-native link react-native-vector-icons
```## Example
##### [Example here](https://github.com/BhavanPatel/react-native-checkbox/tree/master/Example)## Sample usage
```javascriptimport CheckBox from 'react-native-easy-checkbox';
```
```html
this._onChangeValue(value)}/>
```## Configuration
Checkbox component all Configuration.
| Props | Option | Default | Description |
| ------ | ------ | ------ | ------ |
| name | String |checkbox | Name of checbox |
| checked | Boolean |true | State of checkbox |
| checkBoxTrueStyle | Array or Object | - | Style for True Checkbox container |
| checkBoxFalseStyle | Array or Object | - | Style for False Checkbox container |
| checkIconStyle | Array or Object | - | Style for Checkbox |
| onChange | Function | - | On touch of checkbox returns state of checkbox |