bitwarden-android/src/App/Pages/Settings/AutofillPage.xaml.cs
2019-07-02 13:15:00 -04:00

20 lines
380 B
C#

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();
}
}
}
}