disabledInputTheme property

ThemeData get disabledInputTheme

Implementation

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