lightTheme top-level property
Implementation
ThemeData lightTheme = _common.copyWith(
brightness: Brightness.light,
appBarTheme: _common.appBarTheme.copyWith(
backgroundColor: lightColorTheme.secondary,
elevation: 0,
),
bottomAppBarColor: lightColorTheme.secondary,
floatingActionButtonTheme: _common.floatingActionButtonTheme.copyWith(
backgroundColor: lightColorTheme.primary,
foregroundColor: lightColorTheme.onPrimary,
splashColor: lightColorTheme.primaryContainer,
focusColor: lightColorTheme.primaryContainer,
));