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

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: ^2.0.0

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 0xFF337A8B
17
likes
130
points
3.06k
downloads

Publisher

verified publisherhirantha.xyz

Weekly Downloads

convert string to color

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on string_to_color