mirror of
https://github.com/bitwarden/mobile
synced 2026-01-01 08:03:37 +00:00
Added favorites tab with new selected icon capabilities in TabbedPage
This commit is contained in:
@@ -13,9 +13,13 @@ namespace Bit.App.Pages
|
||||
TintColor = Color.FromHex("ffffff");
|
||||
|
||||
var settingsNavigation = new ExtendedNavigationPage(new SettingsPage());
|
||||
var favoritesNavigation = new ExtendedNavigationPage(new VaultListSitesPage());
|
||||
var vaultNavigation = new ExtendedNavigationPage(new VaultListSitesPage());
|
||||
var syncNavigation = new ExtendedNavigationPage(new SyncPage());
|
||||
|
||||
favoritesNavigation.Title = AppResources.Favorites;
|
||||
favoritesNavigation.Icon = "star";
|
||||
|
||||
vaultNavigation.Title = AppResources.MyVault;
|
||||
vaultNavigation.Icon = "fa-lock";
|
||||
|
||||
@@ -25,6 +29,7 @@ namespace Bit.App.Pages
|
||||
settingsNavigation.Title = AppResources.Settings;
|
||||
settingsNavigation.Icon = "fa-cogs";
|
||||
|
||||
Children.Add(favoritesNavigation);
|
||||
Children.Add(vaultNavigation);
|
||||
Children.Add(syncNavigation);
|
||||
Children.Add(settingsNavigation);
|
||||
|
||||
9
src/App/Resources/AppResources.Designer.cs
generated
9
src/App/Resources/AppResources.Designer.cs
generated
@@ -178,6 +178,15 @@ namespace Bit.App.Resources {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Favorites.
|
||||
/// </summary>
|
||||
internal static string Favorites {
|
||||
get {
|
||||
return ResourceManager.GetString("Favorites", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Folder.
|
||||
/// </summary>
|
||||
|
||||
@@ -168,6 +168,10 @@
|
||||
<value>Email Address</value>
|
||||
<comment>Full label for a email address.</comment>
|
||||
</data>
|
||||
<data name="Favorites" xml:space="preserve">
|
||||
<value>Favorites</value>
|
||||
<comment>Title for your favorite items in the vault.</comment>
|
||||
</data>
|
||||
<data name="Folder" xml:space="preserve">
|
||||
<value>Folder</value>
|
||||
<comment>Label for a folder.</comment>
|
||||
|
||||
Reference in New Issue
Block a user