lightTheme function

ThemeData lightTheme()

Implementation

ThemeData lightTheme() {
  final theme = ThemeData.light();

  return theme
      .copyWith(
        extensions: <ThemeExtension<dynamic>>[
          CollactionTheme.light,
        ],
        colorScheme: theme.colorScheme.copyWith(
          background: Colors.white,
          onBackground: Colors.black,
        ),
        brightness: Brightness.light,
      )
      .themeScheme()
      .themeButtons()
      .themeInputs()
      .themeText();
}