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
Currently, setting just the weight or style of a standard font fails, because they are defined as their own families:
export default [ 'Courier', 'Courier-Bold', 'Courier-Oblique', [...] ];
It would be helpful if weights and styles are all registered under the correct family, like so:
<Text style={{fontFamily: "Helvetica"}}> This is an example of <Text style={{fontStyle: "italic"}}>Italic text</Text> </Text>
Instead of:
<Text style={{fontFamily: "Helvetica"}}> This is an example of <Text style={{fontStyle: "Helvetica-Oblique"}}>Italic text</Text> </Text>
The text was updated successfully, but these errors were encountered:
Keeping #649 to track this. I'll try to get into this soon
Sorry, something went wrong.
No branches or pull requests
Currently, setting just the weight or style of a standard font fails, because they are defined as their own families:
It would be helpful if weights and styles are all registered under the correct family, like so:
Instead of:
The text was updated successfully, but these errors were encountered: