react-native-checkbox-touch-events
v1.0.15
Published
Checkbox component for React native
Downloads
8
Maintainers
Readme
react-native-checkbox-touch-events
Checkbox component for React native with onPressIn and onPressOut events.
##Installation:
Install the component through npm using:
npm install react-native-checkbox-touch-events --save
##Example:
import CheckBox from 'react-native-checkbox-touch-events';
<CheckBox
label='Label'
checked={true}
onChange={(checked) => console.log('I am checked', checked)}
onPressIn={pressIn}
onPressOut={pressOut}
/>
##Props:
label
: text that will be displayed along the checkboxlabelBefore
: position the label before the checkbox (boolean). The default value is falselabelStyle
: style object that will be applied to the labelchecked
: initial checked valuecheckedImage
: checked image (e.g.: require('PATH_TO_IMAGE'))checkboxStyle
: style object that will be applied to the checkboxuncheckedImage
: 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 containerunderlayColor
: style the touchable component underlay color