WrathChaos/react-native-bouncy-checkbox-group

Unchecked event?

Closed this issue · 1 comments

How can we determine if a checkbox or radio button is unchecked?

Hello @csulit

you can use onChange prop to check which one are checked and which ones are not

onChange={(selectedItem: ICheckboxButton) => {
    console.log("SelectedItem: ", JSON.stringify(selectedItem));
  }}