build method
- BuildContext context
Describes the part of the user interface represented by this widget.
The framework calls this method when this widget is inserted into the tree in a given BuildContext and when the dependencies of this widget change (e.g., an InheritedWidget referenced by this widget changes). This method can potentially be called in every frame and should not have any side effects beyond building a widget.
The framework replaces the subtree below this widget with the widget returned by this method, either by updating the existing subtree or by removing the subtree and inflating a new subtree, depending on whether the widget returned by this method can update the root of the existing subtree, as determined by calling Widget.canUpdate.
Typically implementations return a newly created constellation of widgets that are configured with information from this widget's constructor and from the given BuildContext.
The given BuildContext contains information about the location in the tree at which this widget is being built. For example, the context provides the set of inherited widgets for this location in the tree. A given widget might be built with multiple different BuildContext arguments over time if the widget is moved around the tree or if the widget is inserted into the tree in multiple places at once.
The implementation of this method must only depend on:
- the fields of the widget, which themselves must not change over time, and
- any ambient state obtained from the
contextusing BuildContext.dependOnInheritedWidgetOfExactType.
If a widget's build method is to depend on anything else, use a StatefulWidget instead.
See also:
- StatelessWidget, which contains the discussion on performance considerations.
Implementation
@override
Widget build(BuildContext context) {
final t = context.tokens;
final isWide = MediaQuery.sizeOf(context).width >= desktopBreakpoint;
final hasTrailing = trailing != null && trailing!.isNotEmpty;
// On narrow viewports, place trailing widgets INLINE with the kicker row.
// The headline still gets a full-width row below (preserves the no-glyph-
// wrapping invariant pinned by editorial_header_responsive_test). Saves
// ~40-50 px of vertical chrome compared with stacking trailing below the
// headline on its own row.
//
// The trailing Wrap is bounded to ~50 % of the row so its children wrap
// into multiple runs when they're too wide for a single line, instead of
// forcing a horizontal Row overflow. For the typical bell-icon case the
// Wrap takes only its intrinsic ~48 px and the kicker keeps the rest.
final kickerRow = LayoutBuilder(
builder: (context, constraints) {
final trailingMax = constraints.hasBoundedWidth
? constraints.maxWidth * 0.5
: double.infinity;
return Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(
child: Text(
kicker.toUpperCase(),
style: context.labelStyle,
softWrap: true,
),
),
if (hasTrailing && !isWide) ...[
const SizedBox(width: 8),
ConstrainedBox(
constraints: BoxConstraints(maxWidth: trailingMax),
child: Wrap(
spacing: 8,
runSpacing: 4,
alignment: WrapAlignment.end,
crossAxisAlignment: WrapCrossAlignment.center,
children: trailing!,
),
),
],
],
);
},
);
final titleColumn = Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
kickerRow,
const SizedBox(height: 4),
Text(
title,
style: DuTaToTypography.display.copyWith(
fontSize: titleSize,
color: t.ink,
height: 1.05,
),
softWrap: true,
),
],
);
return Container(
padding: padding,
margin: const EdgeInsets.only(bottom: 16),
decoration: BoxDecoration(
border: Border(bottom: BorderSide(color: t.rule, width: 1)),
),
// Wide viewports keep the canonical Row(title, trailing) layout — the
// headline shares the row with trailing actions to the right. Narrow
// viewports already absorbed trailing into the kickerRow above, so the
// body here is just the title column.
child: isWide && hasTrailing
? Row(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Expanded(child: titleColumn),
const SizedBox(width: 16),
Wrap(
spacing: 8,
runSpacing: 8,
alignment: WrapAlignment.end,
children: trailing!,
),
],
)
: titleColumn,
);
}