style: ButtonStyle(
// backgroundColor: MaterialStateProperty.all(Color(0xffEDFCF5)),//背景颜色
// foregroundColor: MaterialStateProperty.all(Color(0xff31C27C)), //字体颜色
overlayColor: MaterialStateProperty.all(Color(0xff31C27C)),
// 高亮色
shadowColor: MaterialStateProperty.all(Colors.red),
// 阴影颜色
textStyle: MaterialStateProperty.all(TextStyle(fontSize: 6)),
// 字体
//高亮:字体颜色
side: MaterialStateProperty.all(BorderSide(width: 1, color: Color(0xffffffff))),
// 边框圆角效果。
// shape: MaterialStateProperty.all(StadiumBorder(side: BorderSide(style: BorderStyle.solid))),
// 圆形。
// shape: MaterialStateProperty.all(CircleBorder(
// side: BorderSide(
// //设置 界面效果
// color: Colors.green,
// width: 280.0,
// style: BorderStyle.none))),
// 菱形1
// shape: MaterialStateProperty.all(BeveledRectangleBorder(borderRadius: BorderRadius.circular(8))),//菱形
shape: MaterialStateProperty.all(BeveledRectangleBorder(borderRadius: BorderRadius.circular(18))),//菱形
elevation: MaterialStateProperty.all(3), // 阴影值
),
Flutter ElevatedButton 样式
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- [ElevatedButton介绍] (https://blog.csdn.net/qq_41619796/art...
- 颜色的单位 red,green,blue为三原色,简称rgb(r,g,b) 0(最小数值)—255(最大数值) ;...
- 1. 样式设置 1.1 创建样式 1.2 Style 结构体 成员说明Border :边界Fill :填充色Fon...
- 1. 选择器 1.1 id 选择器 语法 用 "#标签名" 定义 示例 显示结果image.png 1.2 cla...