1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-27 05:33:23 +00:00

rename pages

This commit is contained in:
Kyle Spearrin
2017-11-27 14:26:07 -05:00
parent 793241523d
commit 3f99c513f3
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
using Bit.App.Resources;
using Bit.App.Utilities;
using Xamarin.Forms;
namespace Bit.App.Controls
{
public class AddCipherToolBarItem : ExtendedToolbarItem
{
public AddCipherToolBarItem(Page page, string folderId)
: base(() => Helpers.AddCipher(page, folderId))
{
Text = AppResources.Add;
Icon = "plus.png";
}
}
}