mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
darkbasedTheme
This commit is contained in:
parent
4a01116e93
commit
58f01493e0
1 changed files with 2 additions and 1 deletions
|
@ -11,7 +11,8 @@ namespace Bit.App.Pages
|
|||
{
|
||||
InitializeComponent();
|
||||
var theme = ThemeManager.GetTheme();
|
||||
_logo.Source = theme == "dark" || theme == "black" ? "logo_white.png" : "logo.png";
|
||||
var darkbasedTheme = theme == "dark" || theme == "black" || theme == "nord";
|
||||
_logo.Source = darkbasedTheme ? "logo_white.png" : "logo.png";
|
||||
}
|
||||
|
||||
public async Task DismissRegisterPageAndLogInAsync(string email)
|
||||
|
|
Loading…
Reference in a new issue