flutter_colorpicker
flutter_colorpicker copied to clipboard
HSL Picker should use HSLColor in internal usage.
Post your code, tell me what was expected and what was wrong.
When I didn't slide to black and white, the lightness of the color was correct, but when I slid to black, it changed to black lightness.
ColorPickerSlider( TrackType.lightness, currentHsvColor, onColorChanging, displayThumbColor: true, ),
Oh, based on the hsv converting, the saturation will reset to 0. This is expected behavier since it use HSVColor in internal.
Ok.