I used this flutter package to implement a color picker in my app. My Widget looks something like this:
ColorPicker(
pickerColor: model.color,
onColorChanged: (color) {
...
},
showLabel: false,
pickerAreaHeightPercent: 0.4,
)
This works fine and looks like this in the UI:
Now I wondered how I could implement a classical circular color picker. I did not find an example in the official documentation but there is a screenshot in the package description that shows just this:
Does anyone know how to implement this using the same package or can hint me to an example.


