如何修复不在 flutter 中心的应用栏

How to fix an app bar that is not center in flutter

当我打开我的再订购页面时,我的应用栏标题不是居中的,因为有后退按钮,所以我想知道如何使应用栏始终居中,以便与其他应用栏相同屏幕。

任何帮助或建议将不胜感激。

      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),
            ),
          ],
        ),
      ),

  mainAxisSize: MainAxisSize.min,

您的行小部件中需要它,它会完美居中。