I have noticed that the Icon property in the file [ButtonCirclePlugin / src / ButtonCircle / ButtonCircle.FormsPlugin.Abstractions / CircleButton.cs ] has a typo as below
48 ///
49 /// Property definition for the Property
50 ///
51 public static readonly BindableProperty IconProperty =
52 BindableProperty.Create(propertyName: nameof(BorderColor),
53 returnType: typeof(Icons),
54 declaringType: typeof(CircleButton),
55 defaultValue: Icons.ic_default);
where the BorderColor is probably a cut-paste error and it should read Icon instead
Here is the solution to the defect
I have noticed that the Icon property in the file [ButtonCirclePlugin / src / ButtonCircle / ButtonCircle.FormsPlugin.Abstractions / CircleButton.cs ] has a typo as below
48 ///
49 /// Property definition for the Property
50 ///
51 public static readonly BindableProperty IconProperty =
52 BindableProperty.Create(propertyName: nameof(BorderColor),
53 returnType: typeof(Icons),
54 declaringType: typeof(CircleButton),
55 defaultValue: Icons.ic_default);
where the BorderColor is probably a cut-paste error and it should read Icon instead
Would love to see this fix make it to a new build
BTW: Thank you for a great control...
Saad (saad@yacu.net)