colorpicker_flutter 1.0.3 copy "colorpicker_flutter: ^1.0.3" to clipboard
colorpicker_flutter: ^1.0.3 copied to clipboard

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

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(() {

    });
  }

1
likes
140
pub points
51%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on colorpicker_flutter