light static method

ThemeData light()

Implementation

static ThemeData light() {
  var theme = ThemeData.light();

  theme = _applySharedChanges(theme);

  return theme.copyWith(
    primaryColorBrightness: Brightness.light,
    // primarySwatch: Colors.blue,
    visualDensity: VisualDensity.compact,
    backgroundColor: Colors.blueGrey[50],
    primaryColor: Colors.blue[500],
    popupMenuTheme: theme.popupMenuTheme.copyWith(
      textStyle: theme.textTheme.bodyText1,
    ),
  );
}