mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 05:33:23 +00:00
17 lines
390 B
C#
17 lines
390 B
C#
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";
|
|
}
|
|
}
|
|
}
|