getTextfieldFilledColor static method

Color getTextfieldFilledColor(
  1. BuildContext context, {
  2. UpStyle? override,
  3. UpStyle? style,
  4. 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;
}