We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
<RNPickerSelect onValueChange={(value) => setRequestType(value)} items={[ { label: 'In Person', value: 'In Person' }, { label: 'Remote', value: 'Remote' }, ]} value={requestType} style={{ inputIOS: pickerSelectStyles.inputIOS, inputAndroid: pickerSelectStyles.inputAndroid, }} />
**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}>
<View pointerEvents="none" style={containerStyle}>
The text was updated successfully, but these errors were encountered:
**Local Fix: ** Go to 'src/index.js' Change line 426 from <View pointerEvents="box-only" style={containerStyle}> to <View pointerEvents="none" style={containerStyle}>
Same issue, but this local fix gave me Error: Exception in HostFunction: TypeError: expected dynamic type string', but had type null'
string', but had type
Sorry, something went wrong.
Can we make a PR for this fix?
EDIT: I approved #542
No branches or pull requests
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: