Beforehand I have been in a position to regulate the font weight with out specifying the “-Daring” font household, however by simply setting an applicable font weight.
After upgrading, it is not selecting the font primarily based on the width, although that is the meant conduct in accordance with the docs: https://reactnative.dev/docs/text-style-props#fontweight
On Android it really works as anticipated.
Here is my testing code:
<Textual content
type={[
{ fontFamily: 'Chivo-Bold', fontSize: 31 },
{ fontSize: 32, lineHeight: 35, fontWeight: '700', letterSpacing: -0.5 },
]}
>
Aasd sadasdÆ’ Sg
</Textual content>
<Textual content
type={[
{ fontFamily: 'Chivo-Regular', fontSize: 31 },
{ fontSize: 32, lineHeight: 35, fontWeight: '700', letterSpacing: -0.5 },
]}
>
Aasd sadasdÆ’ Sg
</Textual content>
Here is the way it appears to be like in RN 0.75 and 0.71 with out New Structure
Here is the way it appears to be like in RN 0.76 with New Structure