Commit 662b6684 authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

Revert "nav bar font styles are special, do not inherit (#12578)" (#12661)

This reverts commit 964a138d.

It may (or may not) have caused a performance regression. Hard to say.
parent 1fce14a3
......@@ -330,19 +330,19 @@ class _CupertinoPersistentNavigationBar extends StatelessWidget implements Prefe
color: actionsForegroundColor,
);
final Widget styledLeading = leading == null ? null : new DefaultTextStyle(
final Widget styledLeading = leading == null ? null : DefaultTextStyle.merge(
style: actionsStyle,
child: leading,
);
final Widget styledTrailing = trailing == null ? null : new DefaultTextStyle(
final Widget styledTrailing = trailing == null ? null : DefaultTextStyle.merge(
style: actionsStyle,
child: trailing,
);
// Let the middle be black rather than `actionsForegroundColor` in case
// it's a plain text title.
final Widget styledMiddle = middle == null ? null : new DefaultTextStyle(
final Widget styledMiddle = middle == null ? null : DefaultTextStyle.merge(
style: actionsStyle.copyWith(
fontWeight: FontWeight.w600,
letterSpacing: -0.72,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment