mirror of
https://github.com/bitwarden/mobile
synced 2025-12-11 05:43:30 +00:00
environment page
This commit is contained in:
21
src/App/Pages/Accounts/EnvironmentPage.xaml.cs
Normal file
21
src/App/Pages/Accounts/EnvironmentPage.xaml.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.App.Pages
|
||||
{
|
||||
public partial class EnvironmentPage : BaseContentPage
|
||||
{
|
||||
private EnvironmentPageViewModel _vm;
|
||||
|
||||
public EnvironmentPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
_vm = BindingContext as EnvironmentPageViewModel;
|
||||
_vm.Page = this;
|
||||
}
|
||||
|
||||
private async void Submit_Clicked(object sender, EventArgs e)
|
||||
{
|
||||
await _vm.SubmitAsync();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user