FreekakeApp/lib/helpers/color_helper.dart
2025-04-09 16:28:42 +07:00

10 lines
276 B
Dart

import 'package:flutter/material.dart';
class ColorHelper {
static Color hexToColor(String hex) {
hex = hex.replaceAll('#', '').replaceFirst('0x', '');
if (hex.length == 6) hex = 'FF$hex'; // Tambah alpha jika belum ada
return Color(int.parse('0x$hex'));
}
}