给ElevatedButton设置内边距
时间: 2024-05-14 08:16:34 浏览: 89
button的EdgeInsets
可以通过ElevatedButton的style属性来设置内边距,具体可以使用EdgeInsets类来设置左、上、右、下四个方向的内边距。示例如下:
```
ElevatedButton(
onPressed: () {},
child: Text('Button'),
style: ElevatedButton.styleFrom(
padding: EdgeInsets.fromLTRB(20, 10, 20, 10), // 设置左、上、右、下四个方向的内边距
),
),
```
以上代码将给ElevatedButton设置了左右20像素,上下10像素的内边距。你可以根据实际需求进行调整。
阅读全文