Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/components/appbar/gf_appbar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -321,12 +321,12 @@ class _GFAppBarState extends State<GFAppBar> {
IconThemeData actionsIconTheme = widget.actionsIconTheme ??
appBarTheme.actionsIconTheme ??
overallIconTheme;
TextStyle centerStyle = widget.textTheme?.headline5 ??
appBarTheme.textTheme?.headline5 ??
theme.primaryTextTheme.headline5;
TextStyle sideStyle = widget.textTheme?.bodyText2 ??
appBarTheme.textTheme?.bodyText2 ??
theme.primaryTextTheme.bodyText2;
TextStyle centerStyle = widget.textTheme?.headline ??
appBarTheme.textTheme?.headline ??
theme.primaryTextTheme.headline;
TextStyle sideStyle = widget.textTheme?.body1 ??
appBarTheme.textTheme?.body1 ??
theme.primaryTextTheme.body1;

if (widget.toolbarOpacity != 1.0) {
final double opacity = const Interval(
Expand Down
2 changes: 1 addition & 1 deletion lib/components/avatar/gf_avatar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class GFAvatar extends StatelessWidget {
final Color foregroundColor = this.foregroundColor;
assert(debugCheckHasMediaQuery(context));
final ThemeData theme = Theme.of(context);
TextStyle textStyle = theme.primaryTextTheme.subtitle2.copyWith(
TextStyle textStyle = theme.primaryTextTheme.subtitle.copyWith(
color: foregroundColor,
);
Color effectiveBackgroundColor = backgroundColor;
Expand Down