Color Brightness Flutter Plugin
A Flutter plugin that provides functionality to darken or lighten colors.
Getting Started
To use this plugin, add color_brightness as a dependency in your pubspec.yaml file.
dependencies:
flutter:
sdk: flutter
color_brightness: ^1.0.0
Importing the package
import 'package:color_brightness/color_brightness.dart';
Usage
//normal
Container(
height: 100,
width: 100,
color: Colors.red,
),
//darken
Container(
height: 100,
width: 100,
color: Colors.red.darken(50),
),
//lighten
Container(
height: 100,
width: 100,
color: Colors.red.lighten(50),
),
In the above example, we import the color_brightness package and use the darken() and lighten() methods on the Colors class to modify the brightness of a color. The darken() method takes a percentage value as an argument to darken the color, while the lighten() method takes a percentage value to lighten the color.
Make sure to replace ^1.0.0 with the latest version of the color_brightness plugin. You can find the latest version on the pub.dev page.