react-reactive-form
react-reactive-form copied to clipboard
Switch component don't update touched property
Describe the bug When we touch or change Switch value. Touched property don't change.
To Reproduce Steps to reproduce the behavior:
- Change Switch value
- Check form control touched property
- It still have false value
Expected behavior Touched value should change to true on first control touch.
Desktop (please complete the following information):
- OS: [iOS 10.14.6]
- Browser [chrome 76.0.3809.100]
Can you please give me more info, like which version you're using & what is the platform i.e React-Native or React?
Sorry, I did not specify. React Native 0.59.10. And ios xcode iPhoneX 12.2 simulator. Switch native component
<Switch label={label} style={styles.switch} {...props} {...handler('switch')} />
Thanks, I'll get back to you soon.
Meanwhile, you can try to call markAsTouched
method to register the touch event on onBlur
in Switch
.