fix https://github.com/xamarin/Xamarin.Forms/issues/5346 (#5379)
authorAndrei <andrei.misiukevich@gmail.com>
Wed, 27 Feb 2019 21:02:49 +0000 (00:02 +0300)
committerE.Z. Hart <hartez@users.noreply.github.com>
Wed, 27 Feb 2019 21:02:49 +0000 (14:02 -0700)
Xamarin.Forms.Platform.iOS/Cells/CellRenderer.cs

index b5c6a7c..f2615bb 100644 (file)
@@ -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;
                }