1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 21:33:36 +00:00

return commands for accounts pages

This commit is contained in:
Kyle Spearrin
2019-05-31 12:13:14 -04:00
parent 61be796c76
commit a98283f3ff
12 changed files with 56 additions and 8 deletions

View File

@@ -14,6 +14,13 @@ namespace Bit.App.Pages
_vm.Page = this;
MasterPasswordEntry = _masterPassword;
ConfirmMasterPasswordEntry = _confirmMasterPassword;
_email.ReturnType = ReturnType.Next;
_email.ReturnCommand = new Command(() => _masterPassword.Focus());
_masterPassword.ReturnType = ReturnType.Next;
_masterPassword.ReturnCommand = new Command(() => _confirmMasterPassword.Focus());
_confirmMasterPassword.ReturnType = ReturnType.Next;
_confirmMasterPassword.ReturnCommand = new Command(() => _hint.Focus());
}
public Entry MasterPasswordEntry { get; set; }