This Color picker for flutter apps provide picking facility for both single and multiple color choosing.
Features
- Choose single color
- Choose Multiple colors
Getting started
Just go through example to get code and make the color picker in easy way.
Usage
Color color = Colors.white;
List<dynamic> colorlist = [];
Future<void> _picksinglecolor() async {
color = await ColorpickerState.colorChooseSingle(context);
setState(() {
});
}
Future<void> _pickmulticolor() async {
colorlist.clear();
colorlist = await ColorpickerState.colorChooseMultiple(context);
setState(() {
});
}
Additional information
TODO: Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.