精彩评论
- sss(5年前 (2019-12-13))
可以
评:Docker简介 - gvfdg(5年前 (2019-12-13))
gfd
评:Docker简介 - fd(5年前 (2019-12-13))
grd
评:Docker简介 - ssj(5年前 (2019-12-13))
666
评:Docker简介 - zws_shan(5年前 (2019-12-13))
评论
评:docker-compose安装
2019-12-16 分类:Flutter 作者:北漂程序员 阅读(1842)
1.FlatButton:是扁平的,没有阴影的
2.RaisedButton:是有阴影,看起来凸起来的
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 带圆角的按钮 加圆角的控件外层嵌套一层new Material new Material( child: new RaisedButton( onPressed: () {}, color: Colors.red[300], child: new Text( "RaisedButton", style: new TextStyle(color: Colors.white), ), ), borderRadius: BorderRadius.circular(20.0), shadowColor: Colors.grey, elevation: 5.0, ) |
3.FloatingActionButton:是在侧面浮起来的那种按钮
4.OutlineButton:中文叫线框按钮
1 2 3 4 5 6 7 8 | new Expanded( child: new OutlineButton( borderSide:new BorderSide(color: Theme.of(context).primaryColor), child: new Text('注册',style: new TextStyle(color: Theme.of(context).primaryColor),), onPressed: (){}, ) ) //borderSide用来自定义边框颜色和样式</p> |
「三年博客,如果觉得我的文章对您有用,请帮助本站成长」
谢谢支持
上一篇:Flutter安装及创建
下一篇:flutter水平和垂直布局(Row和Column)
可以
评:Docker简介gfd
评:Docker简介grd
评:Docker简介666
评:Docker简介评论
评:docker-compose安装
共有 0 条评论 - flutter常用按钮