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

https://github.com/applikey/react-native-checkbox-list

Simple checkbox list for your react native application.
https://github.com/applikey/react-native-checkbox-list

Last synced: 18 days ago
JSON representation

Simple checkbox list for your react native application.

Awesome Lists containing this project

README

          

# Install

```bash
$ npm i react-native-checkbox-list --save
```

## Usage

```jsx
import { ListOfCheckbox } from'react-native-checkbox-list';
...

```

### Properties
| Prop | Type | Description |
| :------------ |:------:| :-----------------:|
| arrayCheckbox | `Array` | Array of checkboxes objects |
| image | `require()` | Picture of the marked checkbox |
| value | `String` | Key for object of checkbox in array checkboxes, which return method getArrayCheckbox |
| styleCheckbox | `Object` | Object of style checkbox |
| styleLabel | `Object` | Object of style label |
| label | `String` | Label for checkbox |
| labelLeft | `Boolean` | Label before checkbox |
| labelRight | `Boolean` | Label after checkbox |

## Methods

getArrayCheckbox
return array of checkboxs with result

```jsx
import { getArrayCheckbox } from'react-native-checkbox-list';
```