1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-09 20:13:18 +00:00

add uri and add buttons of search page

This commit is contained in:
Kyle Spearrin
2017-11-27 13:22:42 -05:00
parent 186f839569
commit f5896be699
6 changed files with 144 additions and 47 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";
}
}
}