mirror of
https://github.com/bitwarden/android.git
synced 2025-01-10 02:07:33 +03:00
43 lines
981 B
C#
43 lines
981 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public partial class HintPage : BaseContentPage
|
|
{
|
|
private HintPageViewModel _vm;
|
|
|
|
public HintPage()
|
|
{
|
|
InitializeComponent();
|
|
_vm = BindingContext as HintPageViewModel;
|
|
_vm.Page = this;
|
|
if(Device.RuntimePlatform == Device.Android)
|
|
{
|
|
ToolbarItems.RemoveAt(0);
|
|
}
|
|
}
|
|
|
|
protected override void OnAppearing()
|
|
{
|
|
base.OnAppearing();
|
|
RequestFocus(_email);
|
|
}
|
|
|
|
private async void Submit_Clicked(object sender, EventArgs e)
|
|
{
|
|
if(DoOnce())
|
|
{
|
|
await _vm.SubmitAsync();
|
|
}
|
|
}
|
|
|
|
private async void Close_Clicked(object sender, System.EventArgs e)
|
|
{
|
|
if(DoOnce())
|
|
{
|
|
await Navigation.PopModalAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|