0 purchases
coolors palette
coolors_palette #
A Flutter package that helps you to get your color palette from coolors.co to your project
Install #
1. Depend on it #
Add this to your package's pubspec.yaml file:
dependencies:
coolors_palette: ^0.0.2
copied to clipboard
2. Install it #
You can install packages from the command line:
with Flutter:
$ flutter pub get
copied to clipboard
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
3. Import it #
Now in your Dart code, you can use:
import 'package:coolors_palette/coolors_palette.dart';
copied to clipboard
Example #
final myColors = CoolorsPalette("https://coolors.co/055f3d-066943-07744a-313131-383c3f-34454d-d2433b-b13126-97190b-d10a10");
print(myColors.print());
for (var i = 0; i < myColors.palette.length; i++) {
print(myColors.palette[i]);
}
copied to clipboard
Pending feature: #
Namable Colors
RGB Colors
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.