bitwarden-android/src/App/Pages/MainPage.cs

36 lines
1.1 KiB
C#
Raw Normal View History

2016-05-03 00:50:16 +03:00
using System;
2016-05-10 06:25:37 +03:00
using Bit.App.Controls;
using Bit.App.Resources;
2016-05-03 00:50:16 +03:00
using Xamarin.Forms;
namespace Bit.App.Pages
{
2016-05-10 06:25:37 +03:00
public class MainPage : ExtendedTabbedPage
2016-05-03 00:50:16 +03:00
{
public MainPage(bool myVault = false)
2016-05-03 00:50:16 +03:00
{
TintColor = Color.FromHex("3c8dbc");
2016-05-10 06:25:37 +03:00
var settingsNavigation = new ExtendedNavigationPage(new SettingsPage());
var favoritesNavigation = new ExtendedNavigationPage(new VaultListCiphersPage(true));
var vaultNavigation = new ExtendedNavigationPage(new VaultListCiphersPage(false));
var toolsNavigation = new ExtendedNavigationPage(new ToolsPage());
favoritesNavigation.Icon = "star.png";
vaultNavigation.Icon = "fa_lock.png";
toolsNavigation.Icon = "tools.png";
settingsNavigation.Icon = "cogs.png";
2016-05-03 00:50:16 +03:00
Children.Add(favoritesNavigation);
2016-05-03 00:50:16 +03:00
Children.Add(vaultNavigation);
Children.Add(toolsNavigation);
2016-05-03 00:50:16 +03:00
Children.Add(settingsNavigation);
if(myVault)
{
SelectedItem = vaultNavigation;
}
2016-05-03 00:50:16 +03:00
}
}
}