答案 0 :(得分:1)
一种实现方式:示例代码-
Scaffold(
appBar: AppBar(
title: Text('Demo'),
bottom: PreferredSize(
child: Row(
children: <Widget>[
Expanded(
child: Container(
height: 5.0,
color: Colors.amber,
),
),
Expanded(
child: Container(
height: 5.0,
color: Colors.redAccent,
),
)
],
),
preferredSize: Size.square(1.0)),
),
屏幕截图: