getTextColor function
获取字体颜色
Implementation
Color getTextColor(EasyThemeType? type, bool? disable, bool? mark) {
if (disable != null && disable) return iGray;
if (mark != null && mark) return iBlack;
return getColorByThemeType(type);
}
获取字体颜色
Color getTextColor(EasyThemeType? type, bool? disable, bool? mark) {
if (disable != null && disable) return iGray;
if (mark != null && mark) return iBlack;
return getColorByThemeType(type);
}