10 lines
276 B
Dart
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'));
|
|
}
|
|
}
|