mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
nord theme toast for ios
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
using Foundation;
|
using Foundation;
|
||||||
using System;
|
using System;
|
||||||
using UIKit;
|
using UIKit;
|
||||||
|
using Xamarin.Forms;
|
||||||
|
using Xamarin.Forms.Platform.iOS;
|
||||||
|
|
||||||
namespace Bit.iOS.Core.Views
|
namespace Bit.iOS.Core.Views
|
||||||
{
|
{
|
||||||
@@ -16,7 +18,14 @@ namespace Bit.iOS.Core.Views
|
|||||||
: base(CoreGraphics.CGRect.FromLTRB(0, 0, 320, 38))
|
: base(CoreGraphics.CGRect.FromLTRB(0, 0, 320, 38))
|
||||||
{
|
{
|
||||||
TranslatesAutoresizingMaskIntoConstraints = false;
|
TranslatesAutoresizingMaskIntoConstraints = false;
|
||||||
BackgroundColor = UIColor.DarkGray.ColorWithAlpha(0.9f);
|
var bgColor = UIColor.DarkGray;
|
||||||
|
var nordTheme = Application.Current?.Resources != null &&
|
||||||
|
((Color)Application.Current.Resources["BackgroundColor"]) == Color.FromHex("#3b4252");
|
||||||
|
if(nordTheme)
|
||||||
|
{
|
||||||
|
bgColor = Color.FromHex("#4c566a").ToUIColor();
|
||||||
|
}
|
||||||
|
BackgroundColor = bgColor.ColorWithAlpha(0.9f);
|
||||||
Layer.CornerRadius = 15;
|
Layer.CornerRadius = 15;
|
||||||
Layer.MasksToBounds = true;
|
Layer.MasksToBounds = true;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user