Grial-UI-Kit-Support icon indicating copy to clipboard operation
Grial-UI-Kit-Support copied to clipboard

.NET MAUI MaterialCommunityIconsFont Example

Open marketdevsoft opened this issue 2 years ago • 1 comments

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

marketdevsoft avatar Oct 19 '22 09:10 marketdevsoft

And if possible some other example for use Line Awesome Icons in xaml .... thanks!

marketdevsoft avatar Oct 20 '22 09:10 marketdevsoft

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 }" />

dirivero avatar Mar 13 '23 00:03 dirivero