flutterflow_colorpicker

pub package badge

HSV(HSB)/HSL/RGB/Material color picker adapted from flutter_colorpicker for use in FlutterFlow projects.

Getting Started

Color pickedColor = Color(0xFF000000);

final colorPickerResult = await showFFColorPicker(
  context,
  currentColor: pickedColor,
);
if (colorPickerResult != null) {
  setState(() => pickedColor = colorPickerResult);
}