-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IOS with expo SDK 52: RNPickerSelect is not clickable #646
Comments
Same issue, but this local fix gave me Error: Exception in HostFunction: TypeError: expected dynamic type |
Can we make a PR for this fix? EDIT: I approved #542 |
The issue with this fix @Shenghan0329 is that we cannot deploy node_modules. Do you know how we handle this situation in prod? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
IOS with expo SDK 52: RNPickerSelect is not clickable
To Reproduce
Steps to reproduce the behavior:
Expected behavior
There will be a list of options
Screenshots
n/a
Additional details
Reproduction and/or code sample
**Potential Reason: **
React Native Elements - Wrapping a touchable opacity around an input does not work in IOS
**Local Fix: **
<View pointerEvents="box-only" style={containerStyle}>
to<View pointerEvents="none" style={containerStyle}>
The text was updated successfully, but these errors were encountered: