在此处输入图像描述
我尝试了所有的按钮类型的颤动,但它们的水平尺寸并没有改变。
试试这个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),
),