gpt4 book ai didi

flutter - 如何在 flutter 中让 Appbar 的 IconButton 居中

转载 作者:行者123 更新时间:2023-12-05 03:56:17 26 4
gpt4 key购买 nike

我在使用 Flutter 应用程序时,在应用程序栏中发现了一个问题。图标按钮不在应用栏的中心。

这是我的代码。

appBar: AppBar(
automaticallyImplyLeading: false,
actions: <Widget>[
IconButton(
icon: Icon(Icons.home),
onPressed: null,
)
],
),

IconButton 不在应用栏或导航栏的中心。

最佳答案

这是您可以实现此目的的解决方法,因为操作通常在标题之后,如文档所述 AppBar class .

appBar: AppBar(
automaticallyImplyLeading: false,
centerTitle: true,
title: Row(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
IconButton(
icon: Icon(Icons.home),
onPressed: null,
),
IconButton(
icon: Icon(Icons.trending_up),
onPressed: null,
),
IconButton(
icon: Icon(Icons.people_outline),
onPressed: null,
),
IconButton(
icon: Icon(Icons.person_outline),
onPressed: null,
),
IconButton(
icon: Icon(Icons.notifications_none),
onPressed: null,
),
IconButton(icon: Icon(Icons.search), onPressed: null),
IconButton(
icon: Icon(Icons.brightness_5),
onPressed: null,
),
],
)),

但也许您应该考虑在您的情况下使用 TabBar。

关于flutter - 如何在 flutter 中让 Appbar 的 IconButton 居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59488265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com