Skip to content
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

RN Fabric (v0.77) displays all questions marks for items "?" #612

Open
gabemeola opened this issue Jan 22, 2025 · 0 comments
Open

RN Fabric (v0.77) displays all questions marks for items "?" #612

gabemeola opened this issue Jan 22, 2025 · 0 comments

Comments

@gabemeola
Copy link

Using a Picker like so only renders ? for the items. onValueChange does not trigger, nor does styling take into affect.

<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>

Image


Turning off RN Fabric does fix the issue: RCT_NEW_ARCH_ENABLED=0 pod install

Image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant