color_preview 0.9.1 color_preview: ^0.9.1 copied to clipboard
Packages for easy confirmation of widget colors, Intuitive design
Color Preview 🎨 #
Packages for easy confirmation of widget colors, Intuitive design. #
Features #
- Real-time color adjustment for design
Orientation support #
DarkMode support #
Recommendation: Do not include this package in production distributions due to the possibility of unexpected behavior.
Installation #
dependencies:
color_preview: latest
You can install packages from the command line:
$ flutter pub get
Usage #
- Wrap Target Widget.
import 'package:color_preview/color_preview.dart';
...
// Wrap Widget
ColorPreview(
// initial Color
initialColor: Colors.red,
onTargetWidget: (preview) {
// preview is Picked Color
return Container(
height: 100,
width: 100,
decoration: BoxDecoration(
// Specify a color for the property
color: preview,
),
);
},
),
arguments
name | required | Default | mean |
---|---|---|---|
onTargetWidget |
⚪︎ | Set the target widget | |
initialColor |
⚪︎ | Colors.white | Initial color value |
isEnable |
true | Enable package feature | |
buttonOffset |
Offset of the button to display Elements |
- At that time a color selectable button will be overlaid on the widget.
- Default position is shown in the upper right.
-
Tap to display the Color Picker & Color Label on the screen.
- These elements can be placed anywhere on the screen by DragAndDrop(Long Tap).
-
Picked Color!
-
The color value is copied to the clipboard by Long Tap on the Color Label.
Bugs/Requests #
If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull request are also welcome.
Notes #
- This package uses the wonderful ColorPicker flutter_colorpicker.
- Thanks to the Developers.