2.1.1 • Published 6 years ago

react-native-checkbox-svg v2.1.1

Weekly downloads
5
License
ISC
Repository
github
Last release
6 years ago

react-native-checkbox-svg

Checkbox component supporting SVG graphics for React native.

Fork of sconxu/react-native-checkbox

SVG rendering based on react-native-community/react-native-svg

Installation:

Install the component through npm using:

npm install react-native-checkbox-svg --save

Example:

import CheckBox from 'react-native-checkbox-svg';


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

Props:

  • label : text that will be displayed along the checkbox
  • labelBefore : position the label before the checkbox (boolean). The default value is false
  • labelStyle : style object that will be applied to the label
  • checked : initial checked value
  • checkedImage: checked image (e.g.: require('PATH_TO_IMAGE'))
  • checkboxStyle : style object that will be applied to the checkbox
  • uncheckedImage: unchecked image (e.g.: require('PATH_TO_IMAGE'))
  • onChange : callback function that will be invoked with the toggled checked property as argument.
  • containerStyle : style object that will be applied to the container
  • underlayColor : style the touchable component underlay color
  • accessible : indicates whether view is an accessible element
  • accessibilityLabel : maps to content description / label for Android automation
  • testID : maps to id / name for iOS automation