mdc-maui / mdc-maui

Material design components for .NET MAUI
https://mdc-maui.github.io
MIT License
524 stars 55 forks source link

Controls don't respect FontFamily property #63

Open Reimnop opened 3 months ago

Reimnop commented 3 months ago

Hello, this package is great! However, I've noticed that the mdc controls do not respect the FontFamily property, which affects the look of my app.

Reproduction

Expected behavior

Code

<VerticalStackLayout 
    Spacing="12" 
    VerticalOptions="Center">

    <!-- mdc button (doesn't work as expected) -->
    <mdc:Button 
        WidthRequest="256" 
        Text="Click me!" 
        FontFamily="RobotoRegular" />

    <!-- maui button (works) -->
    <Button 
        WidthRequest="256" 
        Text="Click me!" 
        FontFamily="RobotoRegular" />
</VerticalStackLayout>

Image

image