lightTheme property
Implementation
static ThemeData lightTheme = ThemeData(
primaryColor: lightPrimary,
scaffoldBackgroundColor: lightBG,
bottomAppBarTheme: const BottomAppBarTheme(
elevation: 0,
color: lightBG,
),
appBarTheme: const AppBarTheme(
elevation: 0.0,
backgroundColor: lightBG,
iconTheme: IconThemeData(color: Colors.black),
titleTextStyle: TextStyle(color: Colors.black),
systemOverlayStyle: SystemUiOverlayStyle(
systemNavigationBarColor: Colors.white,
systemNavigationBarIconBrightness: Brightness.dark,
statusBarColor: Colors.white,
statusBarIconBrightness: Brightness.dark,
),
actionsIconTheme: IconThemeData(color: Colors.black)),
colorScheme: ColorScheme.fromSwatch()
.copyWith(
secondary: lightAccent,
)
.copyWith(surface: lightBG),
);