PreferredSize(
preferredSize: Size.fromHeight(kToolbarHeight),
child: Semantics(
container:
true,
child: AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle.
light,
child: Material(
color:
Colors.redred,
// elevation: widget.elevation
// ?? appBarTheme.elevation
// ?? _defaultElevation,
// shape: widget.shape,
child: Semantics(
explicitChildNodes:
true,
child: SafeArea(
bottom:
false,
top:
true,
child: Container(
color:
Colors.redred,
child: Row(
children: <Widget>[
BackButton(),
Text(
'AAAAA'),
Text(
'BBBBB'),
],
),
),
),
),
),
),
))