lightTheme property

ThemeData lightTheme

Implementation

static ThemeData get lightTheme => ThemeData.light().copyWith(
      scaffoldBackgroundColor: ColorName.white,
      canvasColor: ColorName.white,
      elevatedButtonTheme: _elevatedButtonTheme,
      outlinedButtonTheme: _outlinedButtonThemeData,
      inputDecorationTheme: _inputDecorationTheme,
      tabBarTheme: _tabBarTheme,
      textButtonTheme: _textButtonTheme,
      textSelectionTheme: const TextSelectionThemeData(
        cursorColor: ColorName.purpleMain,
      ),
      bottomSheetTheme: _bottomSheetThemeData,
      textTheme: _textTheme,
      appBarTheme: _appBarTheme,
      checkboxTheme: _checkboxTheme,
      listTileTheme: _listTileTheme,
      chipTheme: _chipTheme,
      popupMenuTheme: _popupMenuThemeData,
    );