flutter_circle_color_picker icon indicating copy to clipboard operation
flutter_circle_color_picker copied to clipboard

A beautiful circle color picker for flutter.

Results 9 flutter_circle_color_picker issues
Sort by recently updated
recently updated
newest added

Would it be crazy to implement a pick color by hex code feature, like users could tap the code to open a field and type a new one? Or would...

Added `disableLightnessSlider` and `disableColorCode` attributes to determine whether or not those Widgets should render. I am using this package to control an RGB LED and the lightness slider isn't needed...

This pull request enables use of the color picker for grayscale colors.

`CircleColorPicker( initialColor: Colors.blue, onChanged: (color) => {selectedColor = color}, size: const Size(240, 240), strokeWidth: 4, thumbSize: 36, )` ![Screenshot 2020-12-31 at 2 18 25 PM](https://user-images.githubusercontent.com/36564133/103402980-956a6700-4b74-11eb-8d98-e8eff529f15d.png)

The Thumb that picks color (hue) does not update on move => position and color is updated now.

A color set over the controller was modified on internal update. I reproduced this bug in a test and fixed it. With the tests i found other small errors (not...

@itome I love the simplicity of your widget. In my case though, I need to be able to "capture" clicks so I know when the user has finished with the...