I add icons to my project in the following order, but the icons are not displayed. A single icon appears instead of icons. I created a project in Metro Studio. I added the icons I wanted.
Create Font -> Generate Font -> Export
In this way, I obtained a font with a .ttf extension. I drag and drop it into the Resources/Font folder within the form. I set Build Action as Embedded resource.
App.xaml.cs [assembly: ExportFont("UIFontIcons.ttf", Alias = "FontIcons")] added.
My Code:
Margin="8"
FontSize="20"
HorizontalOptions="End"
Style="{StaticResource IconButtonStyle}"
Text="{StaticResource LinkedIn}"
TextColor="{DynamicResource Gray-800}"
VerticalOptions="Start"/>
ButtonSyle.xaml
What is the point I missed? Is there a video explaining font usage?