mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03: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";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|