react-native-checkbox-green

Checkbox green component for React native

Usage no npm install needed!

<script type="module">
  import reactNativeCheckboxGreen from 'https://cdn.skypack.dev/react-native-checkbox-green';
</script>

README

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.