react-native-bem-check-box v1.0.0
React Native BEMCheckbox
React Native bridge for awesome BEMCheckBox
iOS Only

Content
Installation
Install package via
npm:npm install --save react-native-bem-check-boxLink your library by one of those ways: either by using
rnpm link(see more about rnpm here) or like it's described here.Inside your code include JS part by adding
import BEMCheckBox from 'react-native-bem-check-box';Compile and have fun!
Usage example
You can run built-in example via few simple steps:
- Clone repository
- Go to
Example - Run
npm install && open CheckBox.xcodeproj - Hit "Run"(
cmd+R) button on XCode panel
Basic usage
import BEMCheckBox from 'react-native-bem-check-box';
<BEMCheckBox
onValueChange={value => this.setState(value)}
/>Component properties
Check this section in BEMCheckBox document
value(boolean) - The current state. Defaults tofalselineWidth(number) - The width of the lines of the check mark and box. Defaults to2.0hideBox(boolean) - boolean to control if the box should be hidden or not. Setting this property totruewill basically turn the checkbox into a check mark. Defaults to falseboxType(string) - The type of box to use. Defaults tocirclecirclesquare
tintColor(string) - The color of the line around the box when it is Off. Defaults to#aaaaaaonCheckColor(string) - The color of the check mark when it is On. Defaults to#007affonFillColor(string) - The color of the inside of the box when it is On. Defaults totransparentonTintColor(string) - The color of the line around the box when it is On. Defaults to#007affanimationDuration(number) - The duration in seconds of the animations. Defaults to0.5onAnimationType/offAnimationType(string) - The type of animation to use when the checkbox gets checked/unchecked. Defaults tostrokestrokefillbounceflatone-strokefade
onValueChange(function) - every time the check box gets tapped, after its properties are updated, but before the animations are completed.onAnimationEnd(function) - every time the check box finishes being animated.
Changelog
- 0.3.2 Animate on
valueproperty set - 0.3.1 Updated podspec
- 0.2.0 Added Example
- 0.1.0 Initial release
License
Copyright 2016 Rifat Nabi
Licensed under the MIT License.