1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

generated password history page

This commit is contained in:
Kyle Spearrin
2019-05-14 09:01:07 -04:00
parent 4dfd8b6985
commit cc7ccf921b
9 changed files with 199 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
using System;
using Xamarin.Forms;
namespace Bit.App.Pages
{
@@ -44,9 +45,10 @@ namespace Bit.App.Pages
_selectAction?.Invoke(_vm.Password);
}
private void History_Clicked(object sender, EventArgs e)
private async void History_Clicked(object sender, EventArgs e)
{
var page = new GeneratorHistoryPage();
await Navigation.PushModalAsync(new NavigationPage(page));
}
}
}