mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 16:53:26 +00:00
stub out options page
This commit is contained in:
21
src/App/Pages/Settings/OptionsPage.xaml.cs
Normal file
21
src/App/Pages/Settings/OptionsPage.xaml.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
|
||||
protected override void OnAppearing()
|
||||
{
|
||||
base.OnAppearing();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user