-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomePage.xaml
29 lines (28 loc) · 1.17 KB
/
HomePage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage
x:Class="ChatApp.View.HomePage"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
xmlns:pages="clr-namespace:ChatApp.View"
android:TabbedPage.IsSwipePagingEnabled="False"
BarBackgroundColor="{OnPlatform Android=White}">
<pages:XamChatNavigationPage Title="Dashboard" Icon="{OnPlatform Android=tab_dashboard, iOS=tab_chat}">
<x:Arguments>
<pages:MainPage />
</x:Arguments>
</pages:XamChatNavigationPage>
<pages:XamChatNavigationPage Title="Profile" Icon="{OnPlatform Android=tab_person, iOS=tab_dashboard}">
<x:Arguments>
<pages:ProfilePage />
</x:Arguments>
</pages:XamChatNavigationPage>
<!--
<pages:XamChatNavigationPage Title="Favs"
Icon="{OnPlatform Android=tab_favorites, iOS=tab_favorites}">
<x:Arguments>
<pages:MainPage />
</x:Arguments>
</pages:XamChatNavigationPage>
-->
</TabbedPage>