mirror of
https://github.com/bitwarden/mobile
synced 2026-01-04 09:33:16 +00:00
38 lines
965 B
C#
38 lines
965 B
C#
using System;
|
|
using Bit.Core.Resources.Localization;
|
|
using Bit.Core.Abstractions;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public partial class AboutSettingsPage : BaseContentPage
|
|
{
|
|
private readonly AboutSettingsPageViewModel _vm;
|
|
|
|
public AboutSettingsPage()
|
|
{
|
|
InitializeComponent();
|
|
_vm = BindingContext as AboutSettingsPageViewModel;
|
|
_vm.Page = this;
|
|
}
|
|
|
|
protected async override void OnAppearing()
|
|
{
|
|
base.OnAppearing();
|
|
|
|
try
|
|
{
|
|
await _vm.InitAsync();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LoggerHelper.LogEvenIfCantBeResolved(ex);
|
|
ServiceContainer.Resolve<IPlatformUtilsService>().ShowToast(null, null, AppResources.AnErrorHasOccurred);
|
|
|
|
Navigation.PopAsync().FireAndForget();
|
|
}
|
|
}
|
|
}
|
|
}
|