aminebenkeroum / toggle-switch-react-native

Toggle Switch React Native Component works on both iOS and Android
MIT License
235 stars 70 forks source link

unable to toggle the switch. #48

Closed ali373 closed 3 years ago

ali373 commented 3 years ago

The switch does not toggle.

Screenshot 2021-05-20 at 12 26 37 PM
peterchibunna commented 3 years ago

You have to assign isOn to a state value and then modify this state value in the onToggle

const [isSelected, setSelected] = useState(false);
...
<ToggleSwitch
 isOn={isSelected}
 ...
 onToggle={isOn=> setSelected(isOn)}
/>