material_color_picker 0.0.1 copy "material_color_picker: ^0.0.1" to clipboard
material_color_picker: ^0.0.1 copied to clipboard

discontinued
Dart 1 only

Color picker for Flutter.

Material ColorPicker #

Color picker for Flutter, based on the Google Docs color picker.

alt text

Getting Started #

You can embed into your material app or use it on a Dialog like this:

Future<Color> askedToLead() async => await showDialog(
    context: context,
    child: new SimpleDialog(
      title: const Text('Select color'),
      children: <Widget>[
        new ColorPicker(
          type: MaterialType.transparency,
          onColor: (color) {
            Navigator.pop(context, color);
          },
          currentColor: startColor,
        ),
      ],
    ),
  );

For help getting started with Flutter, view our online documentation.

0
likes
5
pub points
39%
popularity

Publisher

unverified uploader

Color picker for Flutter.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on material_color_picker