React Native bridge for awesome BEMCheckBox
iOS Only
- Install package via
npm
:
npm install --save react-native-bem-check-box
- Link 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!
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
import BEMCheckBox from 'react-native-bem-check-box';
<BEMCheckBox
onValueChange={value => this.setState(value)}
/>
Check this section in BEMCheckBox
document
-
value
(boolean) - The current state. Defaults tofalse
-
lineWidth
(number) - The width of the lines of the check mark and box. Defaults to2.0
-
hideBox
(boolean) - boolean to control if the box should be hidden or not. Setting this property totrue
will basically turn the checkbox into a check mark. Defaults to false -
boxType
(string) - The type of box to use. Defaults tocircle
circle
square
-
tintColor
(string) - The color of the line around the box when it is Off. Defaults to#aaaaaa
-
onCheckColor
(string) - The color of the check mark when it is On. Defaults to#007aff
-
onFillColor
(string) - The color of the inside of the box when it is On. Defaults totransparent
-
onTintColor
(string) - The color of the line around the box when it is On. Defaults to#007aff
-
animationDuration
(number) - The duration in seconds of the animations. Defaults to0.5
-
onAnimationType
/offAnimationType
(string) - The type of animation to use when the checkbox gets checked/unchecked. Defaults tostroke
stroke
fill
bounce
flat
one-stroke
fade
-
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.
- 0.3.2 Animate on
value
property set - 0.3.1 Updated podspec
- 0.2.0 Added Example
- 0.1.0 Initial release
Copyright 2016 Rifat Nabi
Licensed under the MIT License.