Migration Guide: v1 to v2
1. Installation
npm install react-native-just-checkbox@latest2. Updated Imports
// v1 import
import CheckBox from 'react-native-just-checkbox';
// v2 import
import { CheckBox } from 'react-native-just-checkbox';3. Handling Animations
// v1 usage
<CheckBox
isChecked={true}
onToggle={handleToggle}
squareCheckBox={true}
/>
// v2 usage with animation
<CheckBox
isChecked={true}
animationType={"bouncy"} // "bouncy" or "opacity" or "none"
borderRadius={8} // instead of "squareCheckBox" props, use "borderRadius" props
onPress={handleToggle}
/>5. Style and Design Changes

Last updated