8000 GitHub - cloudacy/flutter_native_colorpicker: A native color picker for flutter
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cloudacy/flutter_native_colorpicker

Repository files navigation

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. Create a FlutterNativeColorpicker instance:
final picker = FlutterNativeColorpicker();
  1. Simply open the color picker by run the following static method: (origin must be a valid Rect -> see full example for help)
picker.open(origin);

This just opens the color picker but does not listen for color input.

  1. To listen to inputs start a listener:
listener = picker.startListener((col) {
  setState(() {
    _color = col;
  });
});

Important: Please make sure to cancel the listener when disposing the view!

@override
void dispose() {
  listener.cancel();
  super.dispose();
}
0