WrathChaos / react-native-bouncy-checkbox-group

Fully customizable bouncy checkbox group for React Native
https://freakycoder.com/
MIT License
24 stars 9 forks source link

isChecked doesn't work #6

Closed nartydev closed 2 years ago

nartydev commented 2 years ago

When we apply in data object isChecked item, the checkbox is not check

Here is my data structure: const data = [ { id: 1, text: '...', isChecked: privateStatus, ...styles, onPress: (isChecked) => console.log(isChecked), }, { id: 2, text: '...', isChecked: privateStatus, ...styles, onPress: (isChecked) => console.log(isChecked), }, { id: 3, text: '...', ...styles, disabled: true, onPress: (isChecked) => console.log(isChecked), }, ]

Thank in advance

WrathChaos commented 2 years ago

Hello @nartydev, Can you solve the issue?