lightTheme property

ThemeData get lightTheme

Implementation

static ThemeData get lightTheme {
  return ThemeData(
    useMaterial3: true,
    colorSchemeSeed: const Color(0xFF2196F3),
    brightness: Brightness.light,
    appBarTheme: const AppBarTheme(centerTitle: true, elevation: 0),
    cardTheme: CardThemeData(
      elevation: 2,
      shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(12)),
    ),
  );
}