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