mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 05:33:23 +00:00
rename pages
This commit is contained in:
16
src/App/Controls/AddCipherToolBarItem.cs
Normal file
16
src/App/Controls/AddCipherToolBarItem.cs
Normal 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";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user