bitwarden-android/src/App/Pages/BaseContentPage.cs

42 lines
1.1 KiB
C#
Raw Normal View History

using System;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace Bit.App.Pages
{
public class BaseContentPage : ContentPage
{
protected void SetActivityIndicator()
{
Content = new ActivityIndicator
{
IsRunning = true,
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.Center
};
}
protected async Task LoadOnAppearedAsync(View viewToSet, bool fromModal, Func<Task> workFunction)
{
2019-05-01 17:20:05 +03:00
async Task DoWorkAsync()
{
await workFunction.Invoke();
if(viewToSet != null)
{
Content = viewToSet;
}
}
2019-05-01 17:20:05 +03:00
if(!fromModal || Device.RuntimePlatform == Device.iOS)
{
2019-05-01 17:20:05 +03:00
await DoWorkAsync();
return;
}
await Task.Run(async () =>
{
2019-05-01 17:20:05 +03:00
await Task.Delay(400);
Device.BeginInvokeOnMainThread(async () => await DoWorkAsync());
});
}
}
}