From a79d3a0d7c480ee2a9fb012f55ad3b2138eec242 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 30 Sep 2019 16:28:07 -0400 Subject: [PATCH] uisearchbar tint color --- src/iOS.Core/Utilities/ThemeHelpers.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/iOS.Core/Utilities/ThemeHelpers.cs b/src/iOS.Core/Utilities/ThemeHelpers.cs index 6e5957f13..c3d001729 100644 --- a/src/iOS.Core/Utilities/ThemeHelpers.cs +++ b/src/iOS.Core/Utilities/ThemeHelpers.cs @@ -39,6 +39,7 @@ namespace Bit.iOS.Core.Utilities UITextView.Appearance.TintColor = TextColor; UITextField.Appearance.BackgroundColor = BackgroundColor; UITextView.Appearance.BackgroundColor = BackgroundColor; + UISearchBar.Appearance.TintColor = TextColor; UITableView.Appearance.BackgroundColor = BackgroundColor; UITableView.Appearance.SeparatorColor = SeparatorColor; UINavigationBar.Appearance.BackgroundColor = NavBarBackgroundColor;