gpt4 book ai didi

flutter - 如何让最小的 child 进入盒子?

转载 作者:IT王子 更新时间:2023-10-29 07:14:52 24 4
gpt4 key购买 nike

考虑

new ListView(
children: <Widget>[
new RaisedButton(child: const Text('1')),
],
)

如何让按钮只占据其自然宽度?

最佳答案

考虑将您的 RaisedButton 包装在 Row 中。除了让按钮成为其固有宽度之外,您还可以使用 Row 通过 mainAxisAlignment 构造函数参数水平定位按钮。例如右对齐按钮,使用这个:

          new ListView(
children: <Widget>[
new Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
new RaisedButton(
child: const Text('1'),
onPressed: () { /* ... */ },
),
],
),
],
),

关于flutter - 如何让最小的 child 进入盒子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43838039/

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