mirror of
https://github.com/bitwarden/android.git
synced 2025-01-25 09:13:54 +03:00
28 lines
576 B
C#
28 lines
576 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Bit.App.Pages
|
|||
|
{
|
|||
|
public partial class HintPage : BaseContentPage
|
|||
|
{
|
|||
|
private HintPageViewModel _vm;
|
|||
|
|
|||
|
public HintPage()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
_vm = BindingContext as HintPageViewModel;
|
|||
|
_vm.Page = this;
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnAppearing()
|
|||
|
{
|
|||
|
base.OnAppearing();
|
|||
|
RequestFocus(_email);
|
|||
|
}
|
|||
|
|
|||
|
private async void Submit_Clicked(object sender, EventArgs e)
|
|||
|
{
|
|||
|
await _vm.SubmitAsync();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|