color_brightness

Creator: coderz1093

Last updated:

0 purchases

color_brightness Image
color_brightness Images

Languages

Categories

Add to Cart

Description:

color brightness

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
copied to clipboard
Importing the package #
import 'package:color_brightness/color_brightness.dart';
copied to clipboard
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),
),
copied to clipboard
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.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.