invoice/lib/utils/colors.dart

26 lines
511 B
Dart

import 'package:flutter/material.dart';
Color convertHexStringToColor(String value) {
if (value == null) {
return null;
}
value = value.replaceAll('#', '');
if (value.length != 6) {
return null;
}
try {
return Color(int.parse(value, radix: 16) + 0xFF000000);
} catch (e) {
return null;
}
}
String convertColorToHexString(Color color) {
try {
final hex = color.value.toRadixString(16);
return '#' + hex.substring(2, hex.length);
} catch (e) {
return null;
}
}