gpt4 book ai didi

flutter - 如何删除 Flutter IconButton 大填充?

转载 作者:IT老高 更新时间:2023-10-28 12:36:59 31 4
gpt4 key购买 nike

我想要一排 IconButtons,彼此相邻,但在实际图标和 IconButton 限制之间似乎有相当大的填充。我已经将按钮上的填充设置为 0。

这是我的组件,非常简单:

class ActionButtons extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
color: Colors.lightBlue,
margin: const EdgeInsets.all(0.0),
padding: const EdgeInsets.all(0.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
IconButton(
icon: new Icon(ScanrIcons.reg),
alignment: Alignment.center,
padding: new EdgeInsets.all(0.0),
onPressed: () {},
),
IconButton(
icon: new Icon(Icons.volume_up),
alignment: Alignment.center,
padding: new EdgeInsets.all(0.0),
onPressed: () {},
)
],
),
);
}
}

enter image description here

我想摆脱大部分浅蓝色空间,让我的图标在左侧更早开始,并且彼此靠近,但我找不到调整 IconButton 本身大小的方法。

我几乎可以肯定这个空间是由按钮本身占据的,因为如果我将它们的对齐方式更改为 centerRightcenterLeft 它们看起来像这样:

enter image description here

缩小实际图标也无济于事,按钮仍然很大:

enter image description here

感谢您的帮助

最佳答案

只需将一个空的 BoxConstrains 传递给 constraints 属性和一个零填充。

IconButton(
padding: EdgeInsets.zero,
constraints: BoxConstraints(),
)

您必须传递空约束,因为默认情况下,IconButton 小部件假定最小尺寸为 48 像素。

关于flutter - 如何删除 Flutter IconButton 大填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50381157/

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