amoled static method

ThemeData amoled()

AMOLED theme variant

Implementation

static ThemeData amoled() {
  return dark(primary: Colors.blue).copyWith(
    scaffoldBackgroundColor: Colors.black,
    colorScheme: ColorScheme.fromSeed(
      seedColor: Colors.blue,
      brightness: Brightness.dark,
      surface: Colors.black,
    ),
  );
}