Flutter - 无间距Button
2022-05-03 本文已影响0人
水煮杰尼龟
有时候可能不想要button
的默认间距,想要精确的根据设计图布局,如下
Container(
color: Colors.red,
child: TextButton(
child: Text('TextButton',style: TextStyle(color: Colors.white),),
style: ButtonStyle(
backgroundColor: MaterialStateProperty.all(Colors.blue),
),
onPressed: (){
},
),
)
image.png
你会看到,
Container
不是完全包裹的,而且button
也是有一些内间距的很明显,肯定是通过
style
来设置呗, ButtonStyle
里加上
padding: MaterialStateProperty.all(EdgeInsets.zero),
image.png
发现左右间距确实没了,但是上下没啥变化·
里面还有个
最小size
属性,来设置看看
minimumSize: MaterialStateProperty.all(Size.zero),
image.png
这下都没了,但是
Container
的包裹还是原样,这是因为有点击的size,再设置一下
tapTargetSize: MaterialTapTargetSize.shrinkWrap,
image.png
这下真就没有间距了
如下设置指定大小
fixedSize: MaterialStateProperty.all(Size(100,44))
image.png