Dynamensions.ColorPicker.Maui 1.2.0

dotnet add package Dynamensions.ColorPicker.Maui --version 1.2.0
NuGet\Install-Package Dynamensions.ColorPicker.Maui -Version 1.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dynamensions.ColorPicker.Maui" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dynamensions.ColorPicker.Maui --version 1.2.0
#r "nuget: Dynamensions.ColorPicker.Maui, 1.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dynamensions.ColorPicker.Maui as a Cake Addin
#addin nuget:?package=Dynamensions.ColorPicker.Maui&version=1.2.0

// Install Dynamensions.ColorPicker.Maui as a Cake Tool
#tool nuget:?package=Dynamensions.ColorPicker.Maui&version=1.2.0

Dynamensions Color Picker for .NET Maui

A simple to use ccolor picker. Add the control to your .NET Maui project and use the settings below.

  • NumberOfColors - The number of colors you want to span the spectrum.
  • Saturation - The saturation or vibrancce of the colors. Default is 0.99.
  • Brightness - The brightness of the colors. Default is 0.99
  • IsSorted - (not recommeded). Sorts the colors in the hue. Setting this item to true may start and end the colors on red.Default is false.
  • Offset - The degree to offset the starting hue. Default is 0.
  • Wrap - The wraping of the colors. Default is NoWrap.
  • SelectedColor - A bindable property for the selected color.

How to use:

xmlns:colorPicker="clr-namespace:Dynamensions.ColorPicker.Maui;assembly=Dynamensions.ColorPicker.Maui"
<colorPicker:ColorPicker NumberOfColors="7" 
                         Saturation="1" 
                         Brightness="1" 
                         Wrap="NoWrap" 
                         IsSorted="False" 
                         IncludeBlack="True" 
                         IncludeWhite="True"
                         IncludeGrey="True"
                         SelectedColor="{Binding Path=MySelectedColor}" />

Notes:

  • IncludeBlack, IncudeWhite, and IncludeGrey will add the corosponing color to the end of the colors.
Product Compatible and additional computed target framework versions.
.NET net8.0-android34.0 is compatible.  net8.0-ios17.2 is compatible.  net8.0-maccatalyst17.2 is compatible.  net8.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.0 89 5/13/2024
1.0.0 75 5/13/2024

- Added include black
- Added include grey
- Added include white
- Updated README