This Color picker for flutter apps provide picking facility for both single and multiple color choosing.

Features

  • Choose single color
  • Choose Multiple colors

Getting started

Just go through example to get code and make the color picker in easy way.

To pick single color

image info

image info

To pick multiple colors

image info

image info

Usage

  Color color = Colors.white;

  List<dynamic> colorlist = [];
  
  Future<void> _picksinglecolor() async {
    color = await ColorpickerState.colorChooseSingle(context);
    setState(() {

    });
  }

  Future<void> _pickmulticolor() async {
    colorlist.clear();
    colorlist = await ColorpickerState.colorChooseMultiple(context);
    setState(() {

    });
  }