How come the icons that is showing on android doesn't show on UWP? This is my XAML on Tabbed Page & one example XAML on the content page.
Android
UWP
Tabbed Page
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:AppX.Pages"
x:Class="AppX.TabPage">
<!-- ContentPage Home-->
<local:Home></local:Home>
<!-- ContentPage Building-->
<local:Building></local:Building>
<!-- ContentPage Facility-->
<local:Facility></local:Facility>
<!-- ContentPage Database-->
<local:Database></local:Database>
<!-- ContentPage Settings-->
<local:Settings></local:Settings>
<!-- ContentPage Signout-->
<local:Signout></local:Signout>
</TabbedPage>
Content Page "Home"
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="AppX.Pages.Home" Title="Home" Icon="home_icon.png">
<ContentPage.Content>
<StackLayout HorizontalOptions="Center" VerticalOptions="CenterAndExpand">
<Label Text="Welcome to Home Page!" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
Any ideas?...