gpt4 book ai didi

flutter - 扩展的 Raisebutton flutter

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

我试图让下面两个凸起的按钮均匀地填充可用宽度。

enter image description here

我的专栏:

            Padding(
padding: const EdgeInsets.only(bottom:18.0),
child: Text(
'Which language Do you prefer',
style: TextStyle(
color: Colors.white,
),
),
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
ButtonTheme(
minWidth: 150.0,
height: 50.0,
child: RaisedButton(
color: Theme.of(context).primaryColorLight,
child: Text('French'),
onPressed: () {},
),
),
ButtonTheme(
minWidth: 150.0,
height: 50.0,
child: RaisedButton(
color: Theme.of(context).primaryColorLight,
child: Text('English'),
onPressed: () {},
),
)

有差距

最佳答案

您的 ButtonThemeThemeData 继承颜色.更改颜色或使用 MaterialButton .

提示:将按钮包裹在 Expanded 中小部件。

关于flutter - 扩展的 Raisebutton flutter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55270129/

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