1
0
mirror of https://github.com/bitwarden/mobile synced 2026-02-13 23:03:19 +00:00

add ciphers: card, identity, and sec note

This commit is contained in:
Kyle Spearrin
2017-10-19 13:44:05 -04:00
parent dd96608bb1
commit df616cfe3e
9 changed files with 1084 additions and 194 deletions

View File

@@ -138,6 +138,14 @@ namespace Bit.App.Controls
public Label Label { get; private set; }
public ExtendedEntry Entry { get; private set; }
public ExtendedButton Button { get; private set; }
public VisualElement NextElement
{
get => _nextElement;
set
{
_nextElement = value;
}
}
public void InitEvents()
{
@@ -150,7 +158,7 @@ namespace Bit.App.Controls
{
_tgr.Tapped += Tgr_Tapped;
}
Tapped += FormEntryCell_Tapped;
}