Grial-UI-Kit-Support
Grial-UI-Kit-Support copied to clipboard
.NET MAUI MaterialCommunityIconsFont Example
Hi,
is possible insert a MaterialCommunityIconsFont icon in a .net maui xaml page ? For example MaterialCommunityIconsFont.Numeric1BoxOutline
Can someone post a simple example?
Best Regards
Raffaele
And if possible some other example for use Line Awesome Icons in xaml .... thanks!
You need to declare the font in the MauiProgram next to the other font declarations:
fonts.AddFont("materialdesignicons-webfont.ttf", "MaterialDesignIcons");
And use it like this:
<Label
FontFamily-"MaterialDesignIcons"
Text="{ x: Static local:MaterialCommunityIconsFont.AccessPoint }" />