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

autofill pages for ios

This commit is contained in:
Kyle Spearrin
2019-07-02 13:15:00 -04:00
parent e01bf57874
commit c2c73d5460
9 changed files with 311 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
using System;
namespace Bit.App.Pages
{
public partial class AutofillPage : BaseContentPage
{
public AutofillPage()
{
InitializeComponent();
}
private void Close_Clicked(object sender, EventArgs e)
{
if(DoOnce())
{
Navigation.PopModalAsync();
}
}
}
}