gpt4 book ai didi

flutter - 增加 AppBar 前导属性的宽度

转载 作者:行者123 更新时间:2023-12-05 01:35:53 31 4
gpt4 key购买 nike

我正在尝试将文本(自定义文本按钮)放入 AppBar 的前导属性中。但是,当文本太长时,文本会变成多行

Scaffold(
appBar: AppBar(
centerTitle: true,
leading: Text('Go back to'),
),
)

enter image description here

如何增加 AppBar 前导属性的宽度?

我不想使用标题,因为它使居中标题成为 PITA。

Scaffold(
appBar: AppBar(
centerTitle: true,
title: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: <Widget>[Text('go back to'), Text('My center title')],
),
),
)

enter image description here

有没有办法在不影响 title 属性的情况下更改它?

最佳答案

您可以使用 appBar 中的 leadingWidth 属性设置自定义前导宽度:

Scaffold(
appBar: AppBar(
leadingWidth: 400,
leading: Text('Go back to'),
centerTitle: true,
title: Text('Center title'),
),
)

关于flutter - 增加 AppBar 前导属性的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62517790/

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