appBarTheme method

  1. @override
ThemeData appBarTheme(
  1. BuildContext context
)
override

Implementation

@override
ThemeData appBarTheme(BuildContext context) {
  ThemeData theme = super.appBarTheme(context);

  return theme.copyWith(
    appBarTheme: theme.appBarTheme.copyWith(
      backgroundColor: theme.colorScheme.surface,
    ),
  );
}