mirror of
https://github.com/koloideal/Casha.git
synced 2026-06-10 02:15:29 +03:00
7 lines
178 B
Dart
7 lines
178 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
String colorToHex(Color color) {
|
|
final hex = color.value.toRadixString(16).padLeft(8, '0').toUpperCase();
|
|
return hex.substring(2);
|
|
}
|