Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.
Elvin (Tharindu) Thudugala edited this page May 5, 2019 · 3 revisions

Usage

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:fontAwesome5Free="clr-namespace:Plugin.Glypher.FontAwesome5Free;assembly=Plugin.Glypher.FontAwesome5Free"
             xmlns:glypher="clr-namespace:Plugin.Glypher;assembly=Plugin.Glypher">
  <StackLayout>
    <Label glypher:FontGlyph.Glyph="{x:Static fontAwesome5Free:GlyphList.Fab_Bluetooth}"
           FontSize="Large"
           TextColor="CornflowerBlue" />       
    <Button glypher:FontGlyph.Glyph="{x:Static fontAwesome5Free:GlyphList.Fab_Bitcoin}"
            FontSize="Large"
            TextColor="IndianRed" />

    <Image>
      <Image.Source>
        <FontImageSource Size="32" 
                         Color="Orange" 
                         glypher:FontGlyph.Glyph="{x:Static fontAwesome5Free:GlyphList.Far_Bell_Slash}" />
      </Image.Source>
    </Image>
  </StackLayout>
</ContentPage>
Clone this wiki locally