A real simple circle component built for Xamarin.Forms
- CI NuGet Feed: https://ci.appveyor.com/nuget/realsimplecircle
RealSimpleCircle is available for use in the following supported platforms.
Platform | Supported | Version |
---|---|---|
Xamarin.Android | Yes | API 23 + |
Xamarin.iOS | Yes | iOS 10 + |
NetStandard | Yes | 1.0 + |
Initialize the renderer in the AppDelegate (iOS) and MainActivity (Android)
Xamarin.Forms.Init();
CircleRenderer.Init();
Add the namespace in the xmlns:
xmlns:controls="clr-namespace:RealSimpleCircle.Abstractions;assembly=RealSimpleCircle.Abstractions"
Add the control:
<controls:Circle FillColor="Black"
StrokeColor="Red"
Active="True" />
Property | Description | Default Value |
---|---|---|
FillColor | Gets or Sets the fill color for the circle. | Color.Black |
StrokeColor | Gets or Sets the circle border color | Color.Black |
Active | Gets or Sets if the circle fill color is visible or not | False |
Created By: @Andrew_Hoefling
- Twitter: @Andrew_Hoefling
- Blog: andrewhoefling.com
I have worked on many Xamarin.Forms projects where I needed a really simple circle renderer. I always found myself searching the forums for code snippets or copying code snippets from other projects. I decided this could be a valuable simple control to share with the community on NuGet.
The MIT License (MIT) see License File