string_to_color 1.0.2 copy "string_to_color: ^1.0.2" to clipboard
string_to_color: ^1.0.2 copied to clipboard

outdated

convert string to color

string_to_color #

convert string to color

how to install #

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):

dependencies:
  string_to_color: ^1.0.1

import it #

Now in your Dart code, you can use:

import 'package:string_to_color/string_to_color.dart';

how to use #

import 'dart:ui';
import 'package:string_to_color/string_to_color.dart';

Color color = ColorUtils.stringToColor("name"); // returns `Color(0xff337a8b)`

String hexColor = ColorUtils.stringToHexColor("name"); //returns "0xff337a8b"


int hexInt = ColorUtils.stringToHexInt("name"); //returns "ff337a8b"