Flutter / Dart:将十六进制颜色字符串转换为颜色?
我们的数据库将颜色另存为String
“
AABBCC”,因此我基本上是在寻找像这样的函数:Color.parseColor("#AABBCC");
用于Flutter
Color类需要这样的东西,Color(0xFF42A5F5)
所以我需要转换"#AABBCC"
为0xFFAABBCC
回答:
/// Construct a color from a hex code string, of the format #RRGGBB.Color hexToColor(String code) {
return new Color(int.parse(code.substring(1, 7), radix: 16) + 0xFF000000);
}
以上是 Flutter / Dart:将十六进制颜色字符串转换为颜色? 的全部内容, 来源链接: utcz.com/qa/426894.html