Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 450 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 450 Bytes

flutter_color_picker

A simple color picker for Flutter

  • Material Primary Colors
  • Material Accents Colors
  • RGB Colors

See usage here

Basic usage

 Color color = await showDialog(
          context: context,
          child: new PrimaryColorPickerDialog());

 Color color = await showDialog(
          context: context,
          child: new AccentColorPickerDialog());