Colorus
Flutter Color Choosers with small footprint
Features
- Runs on all platforms
- Provides small and easy to use color pickers
Getting started
Add the latest version of Colorus to the pubspc.yaml file:
flutter:
colorus: ^1.0.1
Usage
Use Colorus like this:
ColorusHueSlider(
color: color,
onChanged: (col) => setState(() => color = col),
),
For other examples see example/main.dart.