0.0.2 • Published 8 years ago

react-native-checkbox-green v0.0.2

Weekly downloads
4
License
ISC
Repository
github
Last release
8 years ago

react-native-checkbox-green

Checkbox green component for React native

##Installation:

Install the component through npm using:

npm install react-native-checkbox-green --save

##Example:

<CheckBox
  checked={true}
  onChange={(checked) => console.log('I am checked', checked)}
/>

##Props:

  • checked : initial checked value
  • onChange : callback function that will be invoked with the toggled checked property as argument.