0 purchases
colorpicker flutter
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.
To pick single color
To pick multiple colors
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(() {
});
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.