This commit is contained in:
2026-03-25 01:23:36 +03:00
parent 76cffc4960
commit 6c10359251
8 changed files with 1367 additions and 1279 deletions
@@ -0,0 +1,6 @@
import 'package:flutter/material.dart';
String colorToHex(Color color) {
final hex = color.value.toRadixString(16).padLeft(8, '0').toUpperCase();
return hex.substring(2);
}