hexcolor 2.0.3
hexcolor: ^2.0.3 copied to clipboard
A flutter plugin for bringing hex colors to dart hexcolorPlugin.
hexcolor_example #
how to use the hexcolor plugin.
hex color plugin allows you to add hex color codes to your flutter projects
Getting Started #
sample usage
import 'package:hexcolor/hexcolor.dart';
Text(
'Running on: $_platformVersion\n',
style: TextStyle(color: HexColor("#f2f2f2")),
),
Text(
"Hex From Material $textColor",
style: TextStyle(color: ColorToHex(Colors.teal)),
),
Hexcolor("#yourhex")
For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.