Flutter基础widgets教程-FloatingActionButton篇

举报
青年码农 发表于 2022/08/25 00:30:27 2022/08/25
【摘要】 1 FloatingActionButton FloatingActionButton(FAB) 控件是一个纸墨设计中定义的 FAB 按钮。用来显示界面上的主要功能。 2 构造函数  FloatingActionButton({ Key key, this.child, t...

1 FloatingActionButton

FloatingActionButton(FAB) 控件是一个纸墨设计中定义的 FAB 按钮。用来显示界面上的主要功能。

2 构造函数 


   
  1. FloatingActionButton({
  2. Key key,
  3. this.child,
  4. this.tooltip,
  5. this.foregroundColor,
  6. this.backgroundColor,
  7. this.heroTag = const _DefaultHeroTag(),
  8. this.elevation = 6.0,
  9. this.highlightElevation = 12.0,
  10. @required this.onPressed,
  11. this.mini = false,
  12. this.shape = const CircleBorder(),
  13. this.clipBehavior = Clip.none,
  14. this.materialTapTargetSize,
  15. this.isExtended = false,
  16. })

3 常用属性 

3.1 child:FAB 中的子 Widget

child:Text("Flutter Demo"),
  

3.2 tooltip: 长按 FAB 所显示的提示文字

tooltip: "按这么长时间干嘛",
  

3.3 foregroundColor:FAB 的前景色

foregroundColor: Colors.red,
  

3.4 backgroundColor:FAB 的背景颜色

backgroundColor: Colors.red,
  

3.5 mini: 只能 FAB 样式是默认样式还是迷你样式

mini: true,
  

3.6 elevation:未点击时阴影值

elevation: 6.0,
  

3.7 highlightElevation:点击下阴影值

highlightElevation: 12.0,
  

文章来源: blog.csdn.net,作者:NMGWAP,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/NMGWAP/article/details/125067315

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。