1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

lock page work with autofill

This commit is contained in:
Kyle Spearrin
2019-05-17 16:36:29 -04:00
parent 3c58775ae2
commit 29951207ec
3 changed files with 27 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
using Bit.App.Abstractions;
using Bit.App.Models;
using Bit.App.Resources;
using Bit.Core;
using Bit.Core.Abstractions;
@@ -90,6 +91,7 @@ namespace Bit.App.Pages
public string ShowPasswordIcon => ShowPassword ? "" : "";
public string MasterPassword { get; set; }
public string Pin { get; set; }
public Action UnlockedAction { get; set; }
public async Task InitAsync()
{
@@ -251,7 +253,7 @@ namespace Bit.App.Pages
private void DoContinue()
{
_messagingService.Send("unlocked");
Application.Current.MainPage = new TabsPage();
UnlockedAction?.Invoke();
}
}
}