You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encounter some bugs after upgrade to RN 0.76...after some investigation I found it only happens on Android and is related to the value prop of <Picker.Item>:
iOS will convert everything into string so it is fine (even with empty string), while android will keep the origin type of value so the selection of any "js falsy" value (numeric zero, empty string, undefined value etc) will not fire the onValueChange event.
Please help.
The text was updated successfully, but these errors were encountered:
similar to #592
I encounter some bugs after upgrade to RN 0.76...after some investigation I found it only happens on Android and is related to the
value
prop of<Picker.Item>
:demo
iOS will convert everything into string so it is fine (even with empty string), while android will keep the origin type of value so the selection of any "js falsy" value (numeric zero, empty string, undefined value etc) will not fire the
onValueChange
event.Please help.
The text was updated successfully, but these errors were encountered: