欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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();
  }
}

相关标签: flutter