A more concise way to create checkboxes by passing in an array of labels property without having to creating individual checkbox
npm install react-native-group-checkbox
import CheckBoxes from 'react-native-group-checkbox' <Checkboxes labels={ ['option1', 'option2'] } onChange={ ({ checkboxes }) => console.log(checkboxes) } // Return an array of checked boxes /> | Props | Type | Description | Default | 
|---|---|---|---|
| checked | array | keep track of checked boxes | [] | 
| onChange | function | callback function when check and uncheck | null | 
Pull requests and Issues are more than welcomed to enhance and better the component.
