1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-20 02:03:49 +00:00

Button uppercase styling enforcement

This commit is contained in:
Kyle Spearrin
2016-08-24 00:07:46 -04:00
parent 2262e1c4c2
commit d4f52bce2b
8 changed files with 28 additions and 18 deletions

View File

@@ -59,7 +59,7 @@ namespace Bit.App.Pages
Margin = new Thickness(0, -10, 0, 0)
};
var notStartedButton = new Button
var notStartedButton = new ExtendedButton
{
Text = "Enable App Extension",
Command = new Command(() => ShowExtension("NotStartedEnable")),
@@ -108,7 +108,7 @@ namespace Bit.App.Pages
Margin = new Thickness(0, -10, 0, 0)
};
var notActivatedButton = new Button
var notActivatedButton = new ExtendedButton
{
Text = "Enable App Extension",
Command = new Command(() => ShowExtension("NotActivatedEnable")),
@@ -158,7 +158,7 @@ namespace Bit.App.Pages
Margin = new Thickness(0, -10, 0, 0)
};
var activatedButton = new Button
var activatedButton = new ExtendedButton
{
Text = "See Supported Apps",
Command = new Command(() =>
@@ -171,7 +171,7 @@ namespace Bit.App.Pages
Style = (Style)Application.Current.Resources["btn-primary"]
};
var activatedButtonReenable = new Button
var activatedButtonReenable = new ExtendedButton
{
Text = "Re-enable App Extension",
Command = new Command(() => ShowExtension("Re-enable")),