bitwarden-android/src/App/Pages/Settings/OptionsPage.xaml.cs

23 lines
476 B
C#
Raw Normal View History

2019-05-29 16:08:47 +03:00
using System;
namespace Bit.App.Pages
{
public partial class OptionsPage : BaseContentPage
{
private readonly OptionsPageViewModel _vm;
public OptionsPage()
{
InitializeComponent();
_vm = BindingContext as OptionsPageViewModel;
_vm.Page = this;
}
2019-05-29 16:36:57 +03:00
protected async override void OnAppearing()
2019-05-29 16:08:47 +03:00
{
base.OnAppearing();
2019-05-29 16:36:57 +03:00
await _vm.InitAsync();
2019-05-29 16:08:47 +03:00
}
}
}