【发布时间】:2021-03-07 12:18:07
【问题描述】:
当我打开我的重新订购页面时,由于返回按钮,我的应用栏标题不在中心,所以我想知道如何使应用栏始终居中,以便与其他屏幕相同。
任何帮助或建议将不胜感激。
appBar: AppBar(
centerTitle: true,
title: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
"Maxis",
style:
TextStyle(fontFamily: "Raleway", fontWeight: FontWeight.w300),
),
Image.asset(
"assets/images/maxis.png",
width: 30,
),
Text(
"Mobile",
style:
TextStyle(fontFamily: "Raleway", fontWeight: FontWeight.w300),
),
],
),
),
【问题讨论】:
标签: android flutter dart mobile appbar