getTextfieldFilledColor static method
Color
getTextfieldFilledColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getTextfieldFilledColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.textfieldFilledColor ??
style?.textfieldFilledColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).textfieldFilledColor ??
Colors.transparent;
}