1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 07:43:37 +00:00

stub out two factor page

This commit is contained in:
Kyle Spearrin
2019-05-23 21:19:45 -04:00
parent 23f27282d6
commit 6d49253ee5
4 changed files with 116 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
using System;
using Xamarin.Forms;
namespace Bit.App.Pages
{
public partial class TwoFactorPage : BaseContentPage
{
private TwoFactorPageViewModel _vm;
public TwoFactorPage()
{
InitializeComponent();
_vm = BindingContext as TwoFactorPageViewModel;
_vm.Page = this;
}
protected override async void OnAppearing()
{
base.OnAppearing();
await _vm.InitAsync();
}
private void Continue_Clicked(object sender, EventArgs e)
{
if(DoOnce())
{
}
}
private void Methods_Clicked(object sender, EventArgs e)
{
if(DoOnce())
{
}
}
}
}