from_css_color 1.0.0 from_css_color: ^1.0.0 copied to clipboard
Creates Color instance from CSS color string according to https://drafts.csswg.org/css-color-3
From CSS Color #
A package that creates Flutter Color instances from CSS color strings according to https://drafts.csswg.org/css-color-3. Hex, RGB(A), HSL(A) and X11 keywords are supported.
Usage #
To use this plugin, add from_css_color
as a dependency in your pubspec.yaml file.
Example #
Import the library.
import 'package:from_css_color/from_css_color.dart';
Use it anywhere you want to create a Color from CSS color definition format:
Container(
color: fromCSSColor('#ff00aa'),
// ...
)
Container(
color: fromCSSColor('rgb(100, 5, 32)'),
// ...
)
Visit examples for more details.