mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
Vault: Don't specify page options for ActivityLoading (#215)
When specifying page options the loader doesn't appear properly on UWP applications. I also couldn't see the options documented here: https://developer.xamarin.com/api/type/Xamarin.Forms.ActivityIndicator/ Signed-off-by: Alistair Francis <alistair@alistair23.me>
This commit is contained in:
parent
acd35ac8a2
commit
bc40c95f20
3 changed files with 3 additions and 9 deletions
|
@ -115,9 +115,7 @@ namespace Bit.App.Pages
|
||||||
|
|
||||||
LoadingIndicator = new ActivityIndicator
|
LoadingIndicator = new ActivityIndicator
|
||||||
{
|
{
|
||||||
IsRunning = true,
|
IsRunning = true
|
||||||
VerticalOptions = LayoutOptions.CenterAndExpand,
|
|
||||||
HorizontalOptions = LayoutOptions.Center
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Content = LoadingIndicator;
|
Content = LoadingIndicator;
|
||||||
|
|
|
@ -164,9 +164,7 @@ namespace Bit.App.Pages
|
||||||
|
|
||||||
LoadingIndicator = new ActivityIndicator
|
LoadingIndicator = new ActivityIndicator
|
||||||
{
|
{
|
||||||
IsRunning = true,
|
IsRunning = true
|
||||||
VerticalOptions = LayoutOptions.CenterAndExpand,
|
|
||||||
HorizontalOptions = LayoutOptions.Center
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Content = LoadingIndicator;
|
Content = LoadingIndicator;
|
||||||
|
|
|
@ -106,9 +106,7 @@ namespace Bit.App.Pages
|
||||||
|
|
||||||
LoadingIndicator = new ActivityIndicator
|
LoadingIndicator = new ActivityIndicator
|
||||||
{
|
{
|
||||||
IsRunning = true,
|
IsRunning = true
|
||||||
VerticalOptions = LayoutOptions.CenterAndExpand,
|
|
||||||
HorizontalOptions = LayoutOptions.Center
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Content = LoadingIndicator;
|
Content = LoadingIndicator;
|
||||||
|
|
Loading…
Reference in a new issue