Color Picker for Flutter based on the Google Docs Color Picker

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

Highly configurable Snackbar by Andre Haueisen.

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,
        ),
      ],
    ),
  );

Download Details:

Author: long1eu

GitHub: https://github.com/long1eu/material_pickers

#flutter #dart #programming

Color Picker for Flutter based on the Google Docs Color Picker
8.80 GEEK