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