From 2da9f0c3b0543245981b67b3ef9018347cbcc15b Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 28 Feb 2019 00:02:49 +0300 Subject: [PATCH] fix https://github.com/xamarin/Xamarin.Forms/issues/5346 (#5379) --- Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs b/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs index b5c6a7c..f2615bb 100644 --- a/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs +++ b/Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs @@ -51,6 +51,8 @@ namespace Xamarin.Forms.Platform.iOS public virtual void SetBackgroundColor(UITableViewCell tableViewCell, Cell cell, UIColor color) { + tableViewCell.TextLabel.BackgroundColor = color; + tableViewCell.ContentView.BackgroundColor = color; tableViewCell.BackgroundColor = color; } -- 2.7.4