errorInputTheme property

ThemeData get errorInputTheme

Implementation

static ThemeData get errorInputTheme => BasfThemes.lightMainTheme.copyWith(
      textSelectionTheme: _errorTextSelectionTheme,
      iconTheme: const IconThemeData(color: BasfColors.red),
      hintColor: BasfColors.red.shade400,
      inputDecorationTheme:
          BasfThemes.lightMainTheme.inputDecorationTheme.copyWith(
        hintStyle: BasfThemes.lightMainTheme.inputDecorationTheme.hintStyle
            ?.copyWith(
          color: BasfColors.red.shade400,
        ),
      ),
    );