我想将“ Logo2”小部件放在左侧,而“标题徽标”在中间。我曾尝试在Row中使用Expanded和Stack,但当场无法使用。我还需要它在不同的屏幕尺寸上工作。
当前代码:
appBar: AppBar(
leading: Icon(Icons.menu),
centerTitle: true,
title: Container(child: Row(
children: <Widget>[
Expanded(flex:2, child: Text("Logo 2")),
Expanded(flex:4, child: Text("Title logo")),
],
)),
actions: <Widget>[
IconButton(
icon: Icon(Icons.person_pin),
onPressed: (){},
)
],
),