mirror of
https://github.com/bitwarden/mobile
synced 2026-01-04 09:33:16 +00:00
material icons. stub out ciphers search page
This commit is contained in:
25
src/App/Pages/Vault/CiphersPage.xaml.cs
Normal file
25
src/App/Pages/Vault/CiphersPage.xaml.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.App.Pages
|
||||
{
|
||||
public partial class CiphersPage : BaseContentPage
|
||||
{
|
||||
private CiphersPageViewModel _vm;
|
||||
|
||||
public CiphersPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
SetActivityIndicator();
|
||||
_vm = BindingContext as CiphersPageViewModel;
|
||||
_vm.Page = this;
|
||||
}
|
||||
|
||||
protected override async void OnAppearing()
|
||||
{
|
||||
base.OnAppearing();
|
||||
await LoadOnAppearedAsync(_mainLayout, true, async () => {
|
||||
await _vm.LoadAsync();
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user