mirror of
https://github.com/bitwarden/android.git
synced 2025-01-09 09:47:36 +03:00
25 lines
594 B
C#
25 lines
594 B
C#
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();
|
|
});
|
|
}
|
|
}
|
|
}
|