mirror of
https://github.com/bitwarden/mobile
synced 2025-12-28 22:23:35 +00:00
support dark theme logos
This commit is contained in:
@@ -189,9 +189,7 @@ namespace Bit.iOS
|
||||
BackgroundColor = ((Color)Xamarin.Forms.Application.Current.Resources["SplashBackgroundColor"])
|
||||
.ToUIColor()
|
||||
};
|
||||
var theme = ThemeManager.GetTheme(false);
|
||||
var darkbasedTheme = theme == "dark" || theme == "black" || theme == "nord";
|
||||
var logo = new UIImage(darkbasedTheme ? "logo_white.png" : "logo.png");
|
||||
var logo = new UIImage(!ThemeManager.UsingLightTheme ? "logo_white.png" : "logo.png");
|
||||
var imageView = new UIImageView(logo)
|
||||
{
|
||||
Center = new CoreGraphics.CGPoint(view.Center.X, view.Center.Y - 30)
|
||||
|
||||
Reference in New Issue
Block a user