disabledInputTheme static method

ThemeData disabledInputTheme(
  1. ThemeData theme
)

Disabled input theme

Implementation

static ThemeData disabledInputTheme(ThemeData theme) => theme.copyWith(
      iconTheme: IconThemeData(color: BasfColors.grey.shade400),
      hintColor: BasfColors.grey.shade400,
      inputDecorationTheme: theme.inputDecorationTheme.copyWith(
        hintStyle: theme.inputDecorationTheme.hintStyle
            ?.copyWith(color: BasfColors.grey.shade400),
        fillColor: BasfColors.grey.shade100,
        filled: true,
      ),
    );