themeData property

ThemeData get themeData

Implementation

static ThemeData get themeData => ThemeData(
  colorScheme: ColorScheme.fromSeed(seedColor: accentIndigo),
  useMaterial3: true,
  // AppBar transparente por defecto para que el gradiente se vea debajo
  appBarTheme: const AppBarTheme(
    backgroundColor: Colors.transparent,
    elevation: 0,
    scrolledUnderElevation: 0,
    foregroundColor: Colors.black87,
  ),
);