Package Exports
- react-native-checkbox
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-checkbox) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-native-checkbox
Checkbox component for React native
##Installation:
First you need to add cb-disabled.png and cb-enabled.png images from the repository as image assets inside your XCode project.
Then you can install the component through npm using:
npm install react-native-checkbox --save##Example:
<CheckBox label='Label' checked={true} />##Props:
label: text that will be displayed allong the checkboxlabelStyle: style object that will be applied to the labelchecked: states if the checkbox is checked or notonChange: callback function that will be called when the cheked state is changing