Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/UdaraAlwis/XFColorPickerControl
An interactive and responsive Color Picker Control for Xamarin.Forms based on SkiaSharp!
https://github.com/UdaraAlwis/XFColorPickerControl
color-picker color-selector control ui xamarin xamarin-forms
Last synced: 29 days ago
JSON representation
An interactive and responsive Color Picker Control for Xamarin.Forms based on SkiaSharp!
- Host: GitHub
- URL: https://github.com/UdaraAlwis/XFColorPickerControl
- Owner: UdaraAlwis
- License: gpl-3.0
- Created: 2020-02-28T00:19:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-03T23:17:01.000Z (over 1 year ago)
- Last Synced: 2024-11-08T13:53:45.831Z (about 1 month ago)
- Topics: color-picker, color-selector, control, ui, xamarin, xamarin-forms
- Language: C#
- Homepage:
- Size: 17.2 MB
- Stars: 27
- Watchers: 3
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-xamarin-forms - XFColorPickerControl ★27
README
Color Picker Control for Xamarin.Forms!
===========Interactive and responsive Color Picker Control for Xamarin.Forms (Android, iOS, UWP) with a whole bunch of awesome features. On a Canvas with a beautiful Color spectrum similar to a rainbow gradient effect spreading across, drag, drop, swipe and pan over the Canvas to pick the Color you need easily, in a fun-to-use interactive experience. Built from pure Xamarin.Forms based on SkiaSharp, lightweight and fast!
Setting it up:
* Grab it on NuGet: https://www.nuget.org/packages/Udara.Plugin.XFColorPickerControl/ [![NuGet](https://img.shields.io/nuget/v/Udara.Plugin.XFColorPickerControl.svg?label=NuGet)](https://www.nuget.org/packages/Udara.Plugin.XFColorPickerControl/)
* Just install in your Xamarin.Forms PCL/.NET Standard project, you're good to go!Blog post:
https://theconfuzedsourcecode.wordpress.com/2020/03/17/publishing-the-nuget-of-my-color-picker-control-for-xamarin-forms/## XAML Set up
```xml
xmlns:xfsegmentedcontrol="clr-namespace:Udara.Plugin.XFColorPickerControl;assembly=Udara.Plugin.XFColorPickerControl"
``````xml
#ff0000
#ffff00
#00ff00
#00ffff
#0000ff
#ff00ff
#ff0000
```
## PickedColorChanged Event
```csharp
private void ColorPicker_PickedColorChanged(object sender, Color colorPicked)
{
// do whatever you want with the colorPicked value
}
```## Bindable Properties
### ```ColorPicked```:
Gets the Picked Color of the Color Picker.XAML:
```xml```
C#:
```csharp
var colorPicked = ColorPicker.ColorPicked;
```### ```BaseColorList```:
Change the available base Colors on the Color Spectrum, of the Color Picker. This will take a **List of strings included with Color names or hex values** which is held in an IEnumerable.
#### XML:
```xml
#ffff00
#00ffff
#ff00ff
#ffff00
```
#### C#:
```csharp
ColorPicker.BaseColorList = new List()
{
"#00bfff",
"#0040ff",
"#8000ff",
"#ff00ff",
"#ff0000",
};
```### ```ColorFlowDirection```:
Change the direction in which the Colors are flowing through on the Color Spectrum, of the Color Picker. This will allow you to set whether the Colors are flowing through from left to right, **Horizontally** or top to bottom, **Vertically**#### XAML
```xml```
#### C#:
```csharp
ColorPicker.ColorFlowDirection =
Udara.Plugin.XFColorPickerControl.ColorFlowDirection.Horizontal;
```### ```ColorSpectrumStyle```:
Change the Color Spectrum gradient style, with the rendering combination of base colors (**Hue**), or lighter colors (**Tint**) or darker colors (**Shade**).
Available Styles:
- HueOnlyStyle
- HueToShadeStyle
- ShadeToHueStyle
- HueToTintStyle
- TintToHueStyle
- TintToHueToShadeStyle
- ShadeToHueToTintStyle#### XML:
```xml```
#### C#:
```csharp
ColorPicker.ColorSpectrumStyle =
Udara.Plugin.XFColorPickerControl.ColorSpectrumStyle.TintToHueToShadeStyle;
```### ```PointerRingDiameterUnits```:
Changes the Diameter size of the Pointer Ring on the Color Picker. It accepts values between 0 and 1, as a representation of numerical units which is compared to the 1/10th of the longest length of the Color Picker Canvas. By default this value is set to 0.6 units.
#### XML:
```xml```
#### C#:
```csharp
ColorPicker.PointerRingDiameterUnits = 0.6;
```### ```PointerRingBorderUnits```:
Changes the Border Thickness size of the Pointer Ring on the Color Picker. It accepts values between 0 and 1, as a representation of numerical units which is calculated against the diameter of the Pointer Ring. By default this value is set to 0.3 units.
#### XML:
```xml```
#### C#:
```csharp
ColorPicker.PointerRingBorderUnits = 0.3;
```### ```PointerRingPositionUnits```:
Changes the Pointer Ring’s position on the Color Picker Canvas programmatically. There are of two bindable properties **PointerRingPositionXUnits** and **PointerRingPositionYUnits**, which represents X and Y coordinates on the Color Picker Canvas. It accepts values between 0 and 1, as a presentation of numerical units which is calculated against the Color Picker Canvas’s actual pixel Width and Height. By default both the values are set to 0.5 units, which positions the Pointer Ring in the center of the Color Picker.
#### XML:
```xml```
#### C#:
```csharp
ColorPicker.PointerRingPositionXUnits = 0.3;
ColorPicker.PointerRingPositionYUnits = 0.7;
```## Event Handler
Fires every time when the selected Color is changed
### ```PickedColorChanged```:
Gets the pickedColor, object type of Color```xml
```
#### C#:
```csharp
ColorPicker.PickedColorChanged += ColorPicker_PickedColorChanged;
```
```csharp
private void ColorPicker_PickedColorChanged(object sender, Color colorPicked)
{
//Do whatever you want with the colorPicker
}
```