getDropdownFocusedLabelColor static method
Color
getDropdownFocusedLabelColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getDropdownFocusedLabelColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.dropdownLabelFocusedColor ??
style?.dropdownLabelFocusedColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).dropdownLabelFocusedColor ??
Theme.of(context).colorScheme.secondary;
}