transparent buttons for lock page

This commit is contained in:
Kyle Spearrin 2016-08-23 20:12:27 -04:00
parent 34cb04cbde
commit e5f3be9669
3 changed files with 6 additions and 3 deletions

View File

@ -53,7 +53,8 @@ namespace Bit.App.Pages
Text = AppResources.LogOut,
Command = new Command(async () => await LogoutAsync()),
VerticalOptions = LayoutOptions.End,
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
BackgroundColor = Color.Transparent
};
var stackLayout = new StackLayout

View File

@ -66,7 +66,8 @@ namespace Bit.App.Pages
Text = AppResources.LogOut,
Command = new Command(async () => await LogoutAsync()),
VerticalOptions = LayoutOptions.End,
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
BackgroundColor = Color.Transparent
};
var stackLayout = new StackLayout

View File

@ -51,7 +51,8 @@ namespace Bit.App.Pages
Text = AppResources.LogOut,
Command = new Command(async () => await LogoutAsync()),
VerticalOptions = LayoutOptions.End,
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
BackgroundColor = Color.Transparent
};
var stackLayout = new StackLayout