dark property

ThemeData get dark

A pre-built dark theme.

Implementation

static ThemeData get dark => const ThemeData(
      primaryColor: Colors.blue,
      backgroundColor: Colors.black,
      textColor: Colors.white,
      selectedColor: Colors.blue,
      borderColor: Colors.white,
      dividerColor: Colors.white,
    );