我想以 xamarin 形式在 IOS ,IPad 上显示方形复选框

I want to Display Square Checkbox on IOS ,IPad in xamarin form

This Below is my IOS Page .I want to show this type of check box on iOS in xamarin form. I have use Xamarin 5.0 version. When I am try to use check element in iOS show rounded check box but I want square check box.

 <CheckBox  x:Name="chkRememberMe"  BackgroundColor="#7E7E7E" SizeChanged="20" IsChecked="False" CheckedChanged="ChkRememberMe_OnCheckedChanged" ></CheckBox>

这是我的复选框代码,我可以在 iOS 中为方块做些什么 checkbox.I 对 xamarin.forms 来说是全新的,我需要添加一个复选框、单选按钮和下拉列表。我尝试了一些来自网络的样本,但我无法获得复选框。任何人都可以帮助我 achieve.Controls.Checkbox 在 Xamarin Forms.Now 中为 ios 和 andorid 创建复选框 Forms.Now 我得到了复选框但是我无法读取它被选中或 not.Here 是我的代码

您可以使用来自 nuget 的插件 Xamarin.Forms.InputKit

xmlns:input="clr-namespace:Plugin.InputKit.Shared.Controls;assembly=Plugin.InputKit"
 <input:CheckBox Text="xxx" Type="Check"/>

如果要自定义复选框的样式,可以勾选https://github.com/enisn/Xamarin.Forms.InputKit/wiki/CheckBox