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
Using a Picker like so only renders ? for the items. onValueChange does not trigger, nor does styling take into affect.
?
onValueChange
<Picker selectedValue={'java'} onValueChange={(itemValue, itemIndex) => console.log('picker change', itemValue)}> <Picker.Item label="Java" value="java" key="java" style={{ backgroundColor: 'blue', color: 'red', fontSize: 14 }} /> <Picker.Item label="JavaScript" value="js" key="js" style={{ backgroundColor: 'blue', color: 'red', fontSize: 14 }} /> <Picker.Item label="10" value={10} key={10} style={{ backgroundColor: 'blue', color: 'red', fontSize: 14 }} /> </Picker>
Turning off RN Fabric does fix the issue: RCT_NEW_ARCH_ENABLED=0 pod install
RCT_NEW_ARCH_ENABLED=0 pod install
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using a Picker like so only renders
?
for the items.onValueChange
does not trigger, nor does styling take into affect.Turning off RN Fabric does fix the issue:
RCT_NEW_ARCH_ENABLED=0 pod install
The text was updated successfully, but these errors were encountered: