flutter_native_colorpicker 1.0.2
flutter_native_colorpicker: ^1.0.2 copied to clipboard
Use native color pickers shipped with the OS.
flutter_native_colorpicker #
This package will support all native color pickers shipped with the current OS.
Actually only works on iOS 14 and above.
Usage #
- Simply open the color picker by run the following static method: (origin must be a valid Rect -> see full example for help)
FlutterNativeColorpicker.open(origin);
This just opens the color picker but does not listen for color input.
- To listen to inputs start a listener:
listener = FlutterNativeColorpicker.startListener((col) {
setState(() {
_color = col;
});
});
Important: Please make sure to cancel the listener when disposing the view!
@override
void dispose() {
listener.cancel();
super.dispose();
}