getDropdownTextColor static method
Color
getDropdownTextColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getDropdownTextColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.dropdownTextColor ??
style?.dropdownTextColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).dropdownTextColor ??
Theme.of(context).primaryColor;
}