|
|
@ -115,6 +115,9 @@ class TextLine extends StatelessWidget { |
|
|
|
return Color.fromRGBO(int.parse(arr[0]), int.parse(arr[1]), |
|
|
|
return Color.fromRGBO(int.parse(arr[0]), int.parse(arr[1]), |
|
|
|
int.parse(arr[2]), double.parse(arr[3])); |
|
|
|
int.parse(arr[2]), double.parse(arr[3])); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (s == 'transparent') { |
|
|
|
|
|
|
|
return Colors.transparent; |
|
|
|
|
|
|
|
} |
|
|
|
String hex = s.replaceFirst('#', ''); |
|
|
|
String hex = s.replaceFirst('#', ''); |
|
|
|
hex = hex.length == 6 ? 'ff' + hex : hex; |
|
|
|
hex = hex.length == 6 ? 'ff' + hex : hex; |
|
|
|
int val = int.parse(hex, radix: 16); |
|
|
|
int val = int.parse(hex, radix: 16); |
|
|
|