本文主要是介绍Flutter ButtonStyle设置圆角,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
ElevatedButton(
child: Text(
'提交',
style: TextStyle(
fontWeight: FontWeight.bold,
color: Colors.white[300],
fontSize: 14),
),
onPressed: () {print("提交");}
style: ButtonStyle(
//圆角
shape: MaterialStateProperty.all(
RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(
20))),
//边框
side: MaterialStateProperty.all(
BorderSide(
color: Colors.red,
width: 0.5),
),
//背景
backgroundColor:
MaterialStateProperty.all(
Colors.blue[200])),
)
这篇关于Flutter ButtonStyle设置圆角的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!