In this example we will implement a custom Checkbox for Android and iOS.
Creating the Custom Control
namespace CheckBoxCustomRendererExample
{
public class Checkbox : View
{
public static readonly BindableProperty IsCheckedProperty = BindableProperty.Create<Checkbox, bool>...