mirror of
https://github.com/flutter/packages.git
synced 2025-08-02 22:01:23 +08:00

Updates the repo for Flutter 3.16, making the minimum version that packages are allowed to support 3.10, following the process in https://github.com/flutter/flutter/wiki/Updating-Packages-repo-for-a-stable-release Per https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#version this does not bump versions.
Palette Generator package
A Flutter package to extract prominent colors from an Image, typically used to find colors for a user interface.
Usage
To use this package, add palette_generator
as a
dependency in your pubspec.yaml file.
Example
Import the library via
import 'package:palette_generator/palette_generator.dart';
Then use the PaletteGenerator
Dart class in your code. To see how this is done,
check out the image_colors example app.