react-native-picker / picker

Picker is a cross-platform UI component for selecting an item from a list of options.
MIT License
1.47k stars 277 forks source link

Windows custom font #461

Open tgldr opened 1 year ago

tgldr commented 1 year ago

How can I set custom font to PickerItem on Windows?

I tried to set itemStyle props, but not working.

...
itemStyle={[
          itemStyle,
          {
            fontFamily: customFontFamily,
          },
        ]}
...

I am using: "react-native": "0.70.0", "react-native-windows": "0.70.19", "react-native-svg": "12.4.0"