flutter_native_colorpicker 1.0.2 copy "flutter_native_colorpicker: ^1.0.2" to clipboard
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 #

  1. 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.

  1. 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();
}
3
likes
110
pub points
47%
popularity

Publisher

verified publishercloudacy.com

Use native color pickers shipped with the OS.

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_native_colorpicker