kThemes_flutterLogin_inputDecorationTheme top-level property

InputDecorationTheme kThemes_flutterLogin_inputDecorationTheme
final

The input decoration theme for the FlutterLogin widget.

This theme applies to input fields within the login screen, such as the email and password input boxes.

Implementation

final kThemes_flutterLogin_inputDecorationTheme = InputDecorationTheme(
  filled: true,
  fillColor: kColors_welcomeScreen_inputBackgroundColor, // Custom input background color.
  contentPadding: const EdgeInsets.symmetric(vertical: 10.0, horizontal: 15.0), // Padding inside input fields.

  // Label style for input fields.
  labelStyle: TextStyle(
    fontSize: 14,
    color: Colors.grey.shade600,  // Sets the label text color to a light grey.
  ),

  // Colors for icons inside input fields.
  prefixIconColor: kColors_flutterLogin_inputDecorationTheme_color,
  suffixIconColor: kColors_flutterLogin_inputDecorationTheme_color,
);