bitwarden-android/src/App/Controls/AddCipherToolbarItem.cs

17 lines
390 B
C#
Raw Normal View History

2017-11-27 21:22:42 +03:00
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";
}
}
}