1
0
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:
Kyle Spearrin
2019-05-02 21:25:26 -04:00
parent 59e412ea09
commit 2553938380
17 changed files with 239 additions and 39 deletions

View 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();
});
}
}
}