Open
Description
Description
The following XAML code doesn't set bold the text label on iOS:
<Label Text="Hello, World Bold!" HorizontalOptions ="Fill" FontAttributes="Bold" />
Workaround:
<Label x:Name="Label2Span">
<Label.FormattedText>
<FormattedString>
<Span Text="Hello, World Bold Workaround (FormattedText)" FontAttributes="Bold"/>
</FormattedString>
</Label.FormattedText>
</Label>
Steps to Reproduce
Get the example here and run it on iOS
https://github.com/Auto72/MauiAppBoldTest
Link to public reproduction project repository
https://github.com/Auto72/MauiAppBoldTest
Version with bug
9.0.60 SR6
Is this a regression from previous behavior?
Not sure, did not test other versions
Last version that worked well
No response
Affected platforms
iOS
Affected platform versions
No response
Did you find any workaround?
No response