Custom Progress Ring in Xamarin iOS

Hi Friends , Today I would like to create a custom progress ring as below .In this progress ring you can create progress with change size , progress width , background ,ring color , label indicator style color, font size etc. Create a project as Xamarin forms . 1. Create a class name CustomProgressRing and three bindable property public class CustomProgressRing : View { public static readonly BindableProperty ProgressValueProperty = BindableProperty . Create < CustomProgressRing , double > ( p => p . ProgressValue , double . NaN , BindingMode . TwoWay , ...