diff --git a/Xamarin.Forms.Platform.iOS/Renderers/FormsCheckBox.cs b/Xamarin.Forms.Platform.iOS/Renderers/FormsCheckBox.cs index 53a5ebb2343..6492b8060d4 100644 --- a/Xamarin.Forms.Platform.iOS/Renderers/FormsCheckBox.cs +++ b/Xamarin.Forms.Platform.iOS/Renderers/FormsCheckBox.cs @@ -30,7 +30,7 @@ internal float MinimumViewSize } } - public FormsCheckBox() : base(UIButtonType.System) + public FormsCheckBox() { TouchUpInside += OnTouchUpInside; ContentMode = UIViewContentMode.Center; @@ -140,10 +140,10 @@ protected virtual UIImage GetCheckBoximage() } if (_checked == null) - _checked = CreateCheckBox(CreateCheckMark()); + _checked = CreateCheckBox(CreateCheckMark()).ImageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate); if (_unchecked == null) - _unchecked = CreateCheckBox(null); + _unchecked = CreateCheckBox(null).ImageWithRenderingMode(UIImageRenderingMode.AlwaysTemplate); return IsChecked ? _checked : _unchecked; }