mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* EC-371 fix iOS extensions login more menu and HintPage to display correctly on extensions * EC-371 fix merge
35 lines
784 B
C#
35 lines
784 B
C#
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 Close_Clicked(object sender, System.EventArgs e)
|
|
{
|
|
if (DoOnce())
|
|
{
|
|
await Navigation.PopModalAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|