fix libz thingy

This commit is contained in:
Henry Hiles 2026-02-06 19:38:18 -05:00
commit 661352fb40
No known key found for this signature in database
2 changed files with 5 additions and 10 deletions

View file

@ -1,8 +0,0 @@
import "package:flutter/widgets.dart";
extension ColorHex on Color {
String get hex {
final rgb = toARGB32() & 0x00FFFFFF;
return "#${rgb.toRadixString(16).padLeft(6, "0")}";
}
}