【问题标题】:How to fix an app bar that is not center in flutter如何修复不在颤振中心的应用栏
【发布时间】: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


    【解决方案1】:
      mainAxisSize: MainAxisSize.min,
    

    您需要在 Row 小部件中使用它,它会完美居中。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-12-27
      • 1970-01-01
      • 2019-02-19
      • 2021-11-20
      • 1970-01-01
      • 2019-11-25
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多