Hi David Bauer,
Greetings from Syncfusion.
We have checked with the reported problem “Checked Color & UnCheckedColor property of SfCheckBox in Xamarin.Forms iOS”. And it was working fine at our end. Also, you can get the square in iOS with the help of CornerRadius property of SfCheckBox as look like Android.
CodeSnippet:
|
<ContentPage.Resources> <Style x:Key="FormCheckBox" TargetType="buttons:SfCheckBox"> <Setter Property="FontSize" Value="13"/> <Setter Property="LineBreakMode" Value="WordWrap"/> <Setter Property="CheckedColor" Value="Red"/> <Setter Property="UncheckedColor" Value="Blue"/> <Setter Property="HorizontalOptions" Value="FillAndExpand"/> <Setter Property="VerticalOptions" Value="FillAndExpand"/> <Setter Property="HorizontalTextAlignment" Value="Start"/> </Style> </ContentPage.Resources>
<buttons:SfCheckBox Text="CheckBox"
CornerRadius="2"
Style="{StaticResource FormCheckBox}"/>
|
Also, we have attached the testing sample for your reference. Please find the sample from the sample from the below link.
Output: [iOS]
For more details, please refer the below link.
Please let us know if you have any concern.
Regards,
Yuvaraj.