lightTheme top-level property

ThemeData lightTheme
getter/setter pair

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,
    ));