dark property

ThemeData dark
final

Implementation

static final ThemeData dark = ThemeData(
  brightness: Brightness.dark,
  primarySwatch: _lightAccentColor as MaterialColor,
  primaryColor: _darkAccentColor,
  // primaryColorLight: _lightAccentColor,
  iconTheme: const IconThemeData(color: _lightAccentColor),
  bottomNavigationBarTheme: const BottomNavigationBarThemeData(
    selectedItemColor: _lightAccentColor,
    unselectedItemColor: Colors.grey,
    // backgroundColor: Colors.white,
  ),
  appBarTheme: const AppBarTheme(
    backgroundColor: _darkAccentColor,
    systemOverlayStyle: SystemUiOverlayStyle(
        statusBarColor: Colors.transparent,
        systemNavigationBarColor: Colors.black),
  ),
);