这个按钮在屏幕上的尺寸变大了



在此处输入图像描述

我尝试了所有的按钮类型的颤动,但它们的水平尺寸并没有改变。

试试这个style: ElevatedButton.styleFrom(fixedSize: Size([width], [height])),示例:

ElevatedButton(
onPressed: () {},
child: const Text('240 x 80'),
style: ElevatedButton.styleFrom(
fixedSize: const Size(240, 80), primary: Colors.deepOrange),
),

相关内容

  • 没有找到相关文章

最新更新