0

I have to make circular Progressbar in Xamarin forms with the text in center and it should support both android and iOS platforms.

It would be nice if someone point me any plugin for that or control. Thank you

R15
  • 13,982
  • 14
  • 97
  • 173
  • A similar question has been asked before https://stackoverflow.com/questions/37379868/c-sharp-custom-control-circle-progress-bar-xamarin-forms but you will essentially have to make a custom renderer – Nick Peppers Mar 18 '19 at 14:25
  • @Nick - I seen this but it is not available for iOS. Thank you. – R15 Mar 18 '19 at 14:26
  • It's missing the [iOS implementation](https://stackoverflow.com/questions/13573676/circular-progress-bars-in-ios) but you're still going to have to create the control individually per platform with a custom renderer – Nick Peppers Mar 18 '19 at 14:30
  • Did you checked this one : https://github.com/jsuarezruiz/MyTripCountdown – N Subedi Mar 18 '19 at 20:42

1 Answers1

1

You can use Syncfusion Xamarin.Forms Progress Bar (they have many more design options in the link).

enter image description here

They have a free community license for all of their controls (so long as you make under $1 million annual revenue) you can sign up for:

https://www.syncfusion.com/downloads/communitylicense

And here is an example of a similar example of the implementation you are wanting to do that should get you started:

https://help.syncfusion.com/xamarin/progressbar/customcontent

Stemado
  • 599
  • 5
  • 10