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

Overview

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

    
   

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

You might also like...

Choose color theme template - A template will help you choose a color scheme for the application, show how widgets interact with it

Choose color theme template - A template will help you choose a color scheme for the application, show how widgets interact with it

choose_color_theme_template This template will help you choose a color scheme fo

Oct 24, 2022

Sample Flutter Drawing App which allows the user to draw onto the canvas along with color picker and brush thickness slider.

Sample Flutter Drawing App which allows the user to draw onto the canvas along with color picker and brush thickness slider.

DrawApp Sample Flutter Drawing App which allows the user to draw onto the canvas along with color picker and brush thickness slider. All code free to

Nov 3, 2022

A highly customizable Flutter color picker.

A highly customizable Flutter color picker.

FlexColorPicker FlexColorPicker is a customizable color picker for Flutter. The ColorPicker can show six different types of color pickers, three of wh

Dec 14, 2022

A HSV color picker for your flutter app. RGB HSV Wheel Hue Saturation Values.

A HSV color picker for your flutter app. RGB HSV Wheel Hue Saturation Values.

flutter_hsvcolor_picker A HSV color picker for your flutter app. RGB HSV Wheel Hue Saturation Values. Getting Started Installation https://pub.dev/pac

Dec 8, 2022

A highly customizable Flutter color picker.

A highly customizable Flutter color picker.

FlexColorPicker FlexColorPicker is a customizable color picker for Flutter. The ColorPicker can show six different types of color pickers, three of wh

Dec 14, 2022

Native Color Picker for Flutter

native_color_picker A native color picker for Flutter. Online Demo: https://rodydavis.github.io/native_color_picker/ Currently only supports web! Gett

Dec 13, 2022

A simple HSV color picker without any glitz or glamour.

A simple HSV color picker without any glitz or glamour.

simple_color_picker Flutter Package A simple HSV color picker without any glitz or glamour. Sample Installation dependencies: simlpe_color_picker: a

Apr 22, 2021

A flutter date time picker inspired by flutter-cupertino-date-picker

A flutter date time picker inspired by flutter-cupertino-date-picker

Flutter Datetime Picker (Pub) flutter_datetime_picker A flutter date time picker inspired by flutter-cupertino-date-picker you can choose date / time

Nov 30, 2021

Form builder image picker - Form builder image picker for flutter

form_builder_image_picker Field for picking image(s) from Gallery or Camera for

Jan 28, 2022
Comments
  • Update color_picker.dart

    Update color_picker.dart

    Fixed int/double bug.

    The following assertion was thrown while notifying listeners for AnimationController: type 'double' is not a subtype of type 'int' where double is from dart:core int is from dart:core

    opened by funkystu 1
  • Adds override for barrierLabel getter that is required in the newest flutter master channel builds

    Adds override for barrierLabel getter that is required in the newest flutter master channel builds

    barrierLabel is a string that is read out when it receives focus in accessibility mode. I'm not clear on how to test this. However, "Dismiss" seems like an appropriate message, and it now compiles and runs in standard (non-accessibility) mode, whereas it was failing to compile previously.

    opened by latesr 0
  • Exception by Animation Library

    Exception by Animation Library

    Got this while using the library: The following assertion was thrown while notifying listeners for AnimationController: type 'double' is not a subtype of type 'int' where double is from dart:core int is from dart:core

    Changing line 181 in color_picker_widget.dart from new Tween(begin: 0, end: _lastColorList.length).animate(controller) to new Tween(begin:0.0,end: _lastColorList.length).animate(controller) fixed it for me.

    Thanks.

    opened by funkystu 1
Owner
Razvan Lung
https://www.linkedin.com/in/long1eu
Razvan Lung
This is a flutter app which uses the Bitrise Api(https://api-docs.bitrise.io/) to show the bitrise projects and builds and lets you download your artifacts.

Bitrise Artifact Downloader Introduction ??‍♂️ This is a flutter app which uses the Bitrise Api(https://api-docs.bitrise.io/) to show the bitrise proj

Jens Klingenberg 9 Apr 30, 2021
null 0 Feb 2, 2022
Material color picker, you can customize colors. Selection in two step, first main color and after shades.

Flutter Material Color Picker Material Color picker is a Flutter widget, that can be customizable. By default, it's Material Colors, but you can defin

Jean-Charles Moussé 70 Nov 25, 2022
Automatically generate profile picture with random first name and background color. But you can still provide pictures if you have them. As the default color, based on the name of the first letter. :fire: :fire: :fire:

FLUTTER PROFILE PICTURE Automatically generate profile picture with random first name and background color. But you can still provide pictures if you

Aditya Dharmawan Saputra 10 Dec 20, 2022
A note-taking app powered by Google services such as Google Sign In, Google Drive, and Firebase ML Vision.

Smart Notes A note-taking app powered by Google services such as Google Sign In, Google Drive, and Firebase ML Vision. This is an official entry to Fl

Cross Solutions 88 Oct 26, 2022
A package can help you to change your flutter app's statusbar's color or navigationbar's color programmatically.

flutter_statusbarcolor A package can help you to change your flutter app's statusbar's color or navigationbar's color programmatically. Getting Starte

Zero 201 Nov 10, 2022
Color matching game - A Crossplatform Color Matching Game made with Flutter

color_matching_game A Color Matching Game built with Flutter. It is a simple app made without adding a plug-in. Play by specifying the red, green and

Yusuke Ishimi 6 Nov 21, 2022
A colorful TabBar Flutter library with color animating indicator where each tab has a color. (inspired by SmartNews app)

Flutter Colorful TabBar A colorful TabBar for Flutter where each tab has a color (inspired by SmartNews app). Getting Started Add this to your package

null 8 Jun 17, 2022
ThemeX is an easy theme manipulation. Only inform primary color and the ThemeX generate all color combination palette for you

ThemeX is an easy theme manipulation basied on Material Design. Only inform primary color and the ThemeX generate all color combination palette for yo

Michael S. Lopes 2 Jan 31, 2022
A Fluter tabview that text color can change with animation and bg color change with animation

float_tab A Fluter tabview that text color can change with animation and bg color change with animation Getting Started This project is a starting poi

ventureli 1 Dec 8, 2021