v0.0.2
colorify
Um pacote simples do Flutter para gerar cores aleatórias determinísticas a partir de uma semente dinâmica fornecida.
1Curtidas 24Downloads em 30 dias160Pontos Pub
AndroidiOSWebmacOSWindowsLinux
🎨 Um pacote simples do Flutter para gerar cores aleatórias determinísticas a partir de uma semente dinâmica fornecida.
{"sdk":"flutter"}^3.0.6{"sdk":"flutter"}^4.0.0Texto original em inglês. Visite o GitHub para a versão atual.
An extremely simple Flutter package that deterministically converts arbitrary dynamic input into a Color. Published mainly for personal use to avoid reinventing the wheel in my projects.
import 'package:colorify/colorify.dart' as c;
import 'package:flutter/material.dart';
void main() {
final input = 'example-seed';
final color = c.colorify(input);
print(color); // Outputs a Color object deterministically derived from 'example-seed'.
}
You can specify the type of colors generated by using the ColorType enum:
ColorType.all: Generates colors from the full spectrum.ColorType.brights: Generates bright and vibrant colors.Example:
import 'package:colorify/colorify.dart' as c;
import 'package:flutter/material.dart';
void main() {
final input = 'example-seed';
// Generate a color from the full spectrum
final allColors = c.colorify(input, colorType: c.ColorType.all);
// Generate a bright color
final brightColor = c.colorify(input, colorType: c.ColorType.brights);
}