Use an Icon Font in Xamarin Forms TabBar

FontImageSource is used to add icon font in tabbar.

<Tab Title="MyTitle">

    <Tab.Icon>  

        <FontImageSource FontFamily="{StaticResource IconFont}" Glyph="&#xF00A;" Size="Small"/>  

    </Tab.Icon>  

    ...

</Tab>