gpt4 book ai didi

flutter 删除列中行之间的空格

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

我有一个包含 3 行的列,如何删除行之间的空格?

这是我的代码:

Widget _buildTable() {
return Column(
children: [
Row(
children: _getBtns(),
),
Row(
children: _getBtns(),
),
Row(
children: _getBtns(),
),
]);
}

List<Widget> _getBtns() {
final result = <Widget>[];
for (int i = 0; i < 7; i++) {
result.add(
Expanded(
child: RaisedButton(color: Colors.green, onPressed: () {}),
),
);
}

return result;
}

enter image description here

这是我想要得到的:

enter image description here

最佳答案

设置materialTapTargetSize

child: RaisedButton(color: Colors.green, onPressed: () {}, materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,),

关于 flutter 删除列中行之间的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53115642/

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