mirror of
https://github.com/bitwarden/mobile
synced 2025-12-23 03:33:59 +00:00
Splash screen, styling updates, focus with delay for android.
This commit is contained in:
@@ -54,7 +54,8 @@ namespace Bit.App.Pages
|
||||
Command = new Command(async () => await RegisterAsync()),
|
||||
VerticalOptions = LayoutOptions.End,
|
||||
HorizontalOptions = LayoutOptions.Fill,
|
||||
Style = (Style)Application.Current.Resources["btn-primary"]
|
||||
Style = (Style)Application.Current.Resources["btn-primary"],
|
||||
FontSize = Device.GetNamedSize(NamedSize.Default, typeof(Button))
|
||||
};
|
||||
|
||||
var loginButton = new Button
|
||||
@@ -63,7 +64,8 @@ namespace Bit.App.Pages
|
||||
Command = new Command(async () => await LoginAsync()),
|
||||
VerticalOptions = LayoutOptions.End,
|
||||
Style = (Style)Application.Current.Resources["btn-primaryAccent"],
|
||||
HorizontalOptions = LayoutOptions.Fill
|
||||
HorizontalOptions = LayoutOptions.Fill,
|
||||
BackgroundColor = Color.Transparent
|
||||
};
|
||||
|
||||
var buttonStackLayout = new StackLayout
|
||||
|
||||
Reference in New Issue
Block a user