gpt4 book ai didi

button - 凸起的按钮宽度减少 flutter

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

凸起的按钮占用太多宽度,我想根据我的布局减少...

ButtonTheme(
minWidth: 16.0,
height: 30.0,
child: RaisedButton(
onPressed:()=>print("a"),
child: new Row(
children: <Widget>[
Padding(
padding: const EdgeInsets.only(right: 6.0),
child: Text('SORT BY',style: TextStyle(fontSize: 12.0),),
),
Icon(Icons.keyboard_arrow_down,size: 20.0,),
],
),
),
),

最佳答案

我得到了答案

我们需要在 Raised button 中添加 padding 以移除默认 padding

ButtonTheme(
minWidth: 16.0,
height: 30.0,
child: RaisedButton(
padding: const EdgeInsets.all(8.0),
onPressed: () => print("a"),
child: new Row(
children: <Widget>[
Padding(
padding: const EdgeInsets.only(right: 6.0),
child: Icon(
Icons.filter,
size: 16.0,
),
),
Text(
'FILTER',
style: TextStyle(fontSize: 12.0),
),
],
),
),
),

关于button - 凸起的按钮宽度减少 flutter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52033839/

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