dark property

ThemeModel dark
final

Implementation

static final ThemeModel dark = ThemeModel(
  type: ThemeType.dark,
  themeData: ThemeData(
    brightness: Brightness.dark,
    primarySwatch: Colors.indigo,
    appBarTheme: const AppBarTheme(
      backgroundColor: Colors.indigo,
      foregroundColor: Colors.white,
    ),
    scaffoldBackgroundColor: Colors.grey[900],
  ),
);