Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/AndreiMisiukevich/SegmentedCircleView

SegmentedCircleView for xamarin forms
https://github.com/AndreiMisiukevich/SegmentedCircleView

Last synced: 29 days ago
JSON representation

SegmentedCircleView for xamarin forms

Awesome Lists containing this project

README

        

# SegmentedCircleView
SegmentedCircleView for xamarin forms



## Easy for use
- **Add and setup FFImageLoading plugin with SVG support!**
- Copy next classes to your NETSTANDARD proj
https://github.com/AndreiMisiukevich/SegmentedCircleView/blob/master/Segmented/SegmentedCircleView.cs
https://github.com/AndreiMisiukevich/SegmentedCircleView/blob/master/Segmented/SegmentInfo.cs

And use lik:
```csharp
new SegmentedCircleView
{
WidthRequest = 230,
HeightRequest = 230,
SegmentsSource = new List
{
new SegmentInfo
{
Percentage = 0.125,
Color = Color.Brown
},
new SegmentInfo
{
Percentage = 0.2,
Color = Color.Red
},
new SegmentInfo
{
Percentage = 0.075,
Color = Color.Red
},
new SegmentInfo
{
Percentage = 0.6,
Color = Color.Black
}
}
}
```