按钮的大小在屏幕上变大了

The size of the button has risen on the screen

enter image description here

flutter的所有按钮类型我都试过了,但是水平大小都没有变化

试试这个 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),
        ),