material_color_picker_wns 1.0.8 copy "material_color_picker_wns: ^1.0.8" to clipboard
material_color_picker_wns: ^1.0.8 copied to clipboard

Material color picker with some possible customizations for Flutter apps

Material Color Picker pub package #

Material Color picker is a Flutter widget, that can be customizable.

By default, it's Material Colors, but you can define your own colors.

You can also use CircleColor widget to display color in your app. Example, you can set the color picker in a dialog and display the selected color in a ListTile, for settings.

How to use it #

These examples use a static color for 'selectedColor', but you can use a variable (state)

Add to your Flutter project #

You just need to add material_color_picker_wns as a dependency in your pubspec.yaml file.

material_color_picker_wns: ^1.0.8
copied to clipboard

Import #

import 'package:material_color_picker_wns/material_color_picker_wns.dart';
copied to clipboard

Basic #

MaterialColorPicker(
    onColorChange: (Color color) {
        // Handle color changes
    },
    selectedColor: Colors.red
)
copied to clipboard

Listen main color changes #

MaterialColorPicker(
    onColorChange: (Color color) {
        // Handle color changes
    },
    onMainColorChange: (ColorSwatch color) {
        // Handle main color changes
    },
    selectedColor: Colors.red
)
copied to clipboard

Disallow Shades #

MaterialColorPicker(
    allowShades: false, // default true
    onMainColorChange: (ColorSwatch color) {
        // Handle main color changes
    },
    selectedColor: Colors.red
)
copied to clipboard

If allowShades is set to false then only main colors will be shown and allowed to be selected. onColorChange will not be called, use onMainColorChange instead.

Custom colors #

In this example, custom colors are a list of Material Colors (class who extend of ColorSwatch). But you can create your own list of ColorSwatch.

MaterialColorPicker(
    onColorChange: (Color color) {
        // Handle color changes
    },
    selectedColor: Colors.red,
    colors: [
        Colors.red,
        Colors.deepOrange,
        Colors.yellow,
        Colors.lightGreen
    ],
)
copied to clipboard

Screenshot #

Color selection #

There is two step, first choose the main color, and when you press it, you have to choose a shade of the main color. By default it's all Material Colors, but you can define custom colors, a list of ColorSwatch.

Example of usages #

You can insert the color picker into a Dialog

Display color #

You can use CircleColor widget, to display the selected color into your settings for example.

1
likes
140
points
37
downloads

Publisher

verified publisherdevelopers.erratums.com

Weekly Downloads

2024.09.14 - 2025.03.29

Material color picker with some possible customizations for Flutter apps

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on material_color_picker_wns