Hashbrowns Static Color Generator
The purpose of Hashbrowns is to generate consistent colors based on the hashcode of an object.
Usage
class Genre {
String name;
Genre(this.name);
}
class GenrePill extends StatelessWidget {
final Genre genre;
late final Hashbrowns hashbrowns;
GenrePill(this.genre) {
this.hashbrowns = Hashbrowns.pastels();
};
@override
Widget build(BuildContext context) {
final color = hashbrowns.generateColor(genre);
return Container(
color: color.surfaceColor,
child: Text(genre.name, style: TextStyle(color: color.onSurfaceColor))
);
}
}
Libraries
- hashbrowns
- Hashbrowns allows consistent color generation based on hashcodes.
Simply create a
Hashbrowns
instance, and pass a hashcode togenerateColor
, and you will get the same color every time for the same hashcode. `This works especially well for string constants whose hashcodes are consistent across instances.