Flutter 拓展之Color
程序员文章站
2024-03-18 12:47:46
...
// @Description: Color拓展
// @Author: 陈胜辉
// @Date: 2019-12-18 09:54:38
// @Version: 版本号, YYYY-MM-DD
// @LastEditors: 陈胜辉
// @LastEditTime: 2019-12-18 13:06:53
// @Deprecated: 否
// 备注
import 'package:flutter/material.dart';
extension SHExtension on Color {
//color 转 16进制string
String toHex() {
List temp = [this.alpha, this.red, this.green, this.blue];
String color = '#';
for (var obj in temp) {
String str = obj.toRadixString(16);
color += str;
}
return color.toUpperCase();
}
}
上一篇: lru cache和ttl cache缓存写法,装饰器写法
下一篇: C语言实现数据结构——栈和队列