gpt4 book ai didi

flutter - 如何从 ExpansionTile 的标题中删除默认填充

转载 作者:IT王子 更新时间:2023-10-29 07:22:54 25 4
gpt4 key购买 nike

默认情况下,我们在 ExpansionTile 的 header 中有 16 个水平填充,因为它是 ListTile 并且它有

/// If null, `EdgeInsets.symmetric(horizontal: 16.0)` is used.
final EdgeInsetsGeometry contentPadding;

所以我们左右都有空格 enter image description here

如何删除它们?

最佳答案

ListTile 使用 ListTileTheme 设置样式,我们可以像这样为子 ListTile 添加自己的样式

ListTileTheme(
contentPadding: EdgeInsets.all(0),
child: ExpansionTile(...)
)

关于flutter - 如何从 ExpansionTile 的标题中删除默认填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54714836/

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