appBarTheme property

AppBarTheme get appBarTheme

Implementation

AppBarTheme get appBarTheme => AppBarTheme(
  backgroundColor: colors.surface,
  elevation: sizes.elevationSm,
  foregroundColor: colors.onSurface,
  centerTitle: true,
  titleTextStyle: typography.titleLarge,
  iconTheme: IconThemeData(
    color: colors.onSurface,
    size: sizes.iconMd,
  ),
  actionsIconTheme: IconThemeData(
    color: colors.onSurface,
    size: sizes.iconMd,
  ),
);