How to use fonts with dynamic width?
We are using tabler icons at my project, which supports dynamic font weights. How could we use this feature with expo vector icons?

I guess you can simply set the font weight manually: <Feather name="link" size={24} style={{ fontWeight: "bold" }} />.
I guess you can simply set the font weight manually:
<Feather name="link" size={24} style={{ fontWeight: "bold" }} />.
it doesn't work
2023 and it keep open, ty @Expo
any updates or possible fixes on this? accessibility settings(bold text) on android actually make icons bold and theres no way to override this setting with code. on ios this doesnt happen. what i've tried so far is:
- setting font weight to normal or 100 with { fontWeight: "normal" } through the style prop
- setting allowFontScaling prop to false
- setting maxFontSizeMultiplier prop to values between 0 and 1(including 1)