React Native component for Checkbox
Android Example | IOS Example |
---|---|
RN version | Checkbox version |
---|---|
> 0.60 | >= 0.3 (Support IOS from 0.4) |
< 0.60 | 0.2 (only Android) |
yarn add @react-native-community/checkbox
or
npm install @react-native-community/checkbox --save
and install cocoapods
npx pod-install
From react-native >= 0.60 autolinking will take care of the link
for react-native =< 0.59.X
react-native link @react-native-community/checkbox
Manually link the library on Android
include ':react-native-community-checkbox'
project(':react-native-community-checkbox').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/checkbox/android')
dependencies {
...
implementation project(':react-native-community-checkbox')
}
On top, where imports are:
import com.reactnativecommunity.checkbox.ReactCheckBoxPackage;
Add the checkbox
class to your list of exported packages.
@Override
protected List<ReactPackage> getPackages() {
return Arrays.asList(
new MainReactPackage(),
new ReactCheckBoxPackage()
);
}
This module was created when the CheckBox was split out from the core of React Native. To migrate to this module you need to follow the installation instructions above and then change you imports from:
import { CheckBox } from 'react-native';
to:
import CheckBox from '@react-native-community/checkbox';
import CheckBox from '@react-native-community/checkbox';
const [toggleCheckBox, setToggleCheckBox] = useState(false)
<CheckBox
disabled={false}
value={toggleCheckBox}
onValueChange={() => toggleCheckBox ? setToggleCheckBox(false) : setToggleCheckBox(true)}
/>
Check out the example project for more examples.
Prop name | Type | Description |
---|---|---|
onChange | function | Invoked on change with the native event. |
onValueChange | function | Invoked with the new boolean value when it changes. |
value | boolean | The value of the checkbox. If true the checkbox will be turned on. Default value is false. |
testID | string | Used to locate this view in end-to-end tests. |
Prop name | Type | Description |
---|---|---|
disabled | boolean | If true the user won't be able to toggle the checkbox. Default value is false. |
tintColors | string | An object with the following shape: { true?: ?ColorValue, false?: ?ColorValue } . The color value for true will be used when the checkbox is checked, and the color value for false will be used when it is off. |
Prop name | Type | Description |
---|---|---|
lineWidth | boolean | The width of the lines of the check mark and box. Defaults to 2.0. |
hideBox | boolean | ontrol if the box should be hidden or not. Defaults to false |
boxType | 'circle' or 'square' | The type of box to use. Defaults to 'circle' |
tintColor | string | The color of the box when the checkbox 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 to transparent |
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 to 0.5 |
onAnimationType | 'stroke' or 'fill' or 'bounce' or 'flat' or 'one-stroke' or 'fade' | The type of animation to use when the checkbox gets checked. Default to 'stroke' |
offAnimationType | 'stroke' or 'fill' or 'bounce' or 'flat' or 'one-stroke' or 'fade' | The type of animation to use when the checkbox gets unchecked. 'stroke' |
This module was extracted from react-native
core.
The implementaion of IOS version refered to BEMCheckBox
The library is released under the MIT licence. For more information see LICENSE
.