Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/AndreiMisiukevich/SegmentedCircleView
- Owner: AndreiMisiukevich
- License: mit
- Created: 2019-01-23T22:24:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-18T18:21:23.000Z (over 5 years ago)
- Last Synced: 2024-11-12T22:42:38.450Z (about 1 month ago)
- Language: C#
- Size: 438 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-xamarin-forms - SegmentedCircleView ★10
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.csAnd 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
}
}
}
```