Last updated:
0 purchases
hexcolor
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)),
),
copied to clipboard
Hexcolor("#yourhex")
copied to clipboard
Color to hex #
String textColor = ColorToHex(Colors.teal).toString();
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.