gpt4 book ai didi

flutter - 如何在 Appbar 左侧创建按钮 [flutter]

转载 作者:行者123 更新时间:2023-12-04 12:17:58 25 4
gpt4 key购买 nike

我试图在应用程序栏的左侧制作按钮[弹出新屏幕],但我发现只有抽屉不是我想要的。
我在 AppBar 中想要什么:

------------------------------------------------<br>
| button |----------text----------| button |<br>
------------------------------------------------<br>
我现在所拥有的:
------------------------------------------------<br>
----------------text----------------| button | <- form actions in AppBar<br>
------------------------------------------------<br>

最佳答案

如果我理解正确,您想在 AppBar 中添加一个左按钮.您可以通过使用 leading 来实现这一点。属性,像这样:

AppBar(
title: Text("AppBar with leading button"),
automaticallyImplyLeading: false,
leading: IconButton (
icon: Icon(Icons.arrow_back),
onPressed: () {
/** Do something */
},
),
)

关于flutter - 如何在 Appbar 左侧创建按钮 [flutter],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66734120/

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