mirror of
https://github.com/bitwarden/android.git
synced 2025-01-06 00:07:54 +03:00
20 lines
380 B
C#
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();
|
|
}
|
|
}
|
|
}
|
|
}
|