fix issue with search bar color on iOS (#1095)

This commit is contained in:
Matt Portune 2020-09-28 10:14:31 -04:00 committed by GitHub
parent 67bc59f6b6
commit 26175fbe1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,4 @@
using Bit.App.Abstractions; using Bit.App.Utilities;
using Bit.Core.Utilities;
using Xamarin.Forms; using Xamarin.Forms;
namespace Bit.App.Controls namespace Bit.App.Controls
@ -10,8 +9,7 @@ namespace Bit.App.Controls
{ {
if (Device.RuntimePlatform == Device.iOS) if (Device.RuntimePlatform == Device.iOS)
{ {
var deviceActionService = ServiceContainer.Resolve<IDeviceActionService>("deviceActionService", true); if (ThemeManager.UsingLightTheme)
if (!deviceActionService?.UsingDarkTheme() ?? false)
{ {
TextColor = Color.Black; TextColor = Color.Black;
} }