mchome / flutter_colorpicker

HSV(HSB)/HSL/RGB/Material color picker inspired by all the good design for your amazing flutter apps.
https://pub.dev/packages/flutter_colorpicker
MIT License
350 stars 203 forks source link

HSL Picker should use HSLColor in internal usage. #63

Open DioboKN opened 2 years ago

mchome commented 2 years ago

Post your code, tell me what was expected and what was wrong.

DioboKN commented 2 years ago

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, ),

mchome commented 2 years ago

Oh, based on the hsv converting, the saturation will reset to 0. This is expected behavier since it use HSVColor in internal.

DioboKN commented 2 years ago

Ok.