当前位置:   article > 正文

Flutter Button 按钮_flutter的button类型

flutter的button类型

目录

参数详解

代码示例

效果图

完整代码 


 在 Flutter 里有很多的 Button,包括了:MaterialButton、RaisedButton、FloatingActionButton、FlatButton、IconButton、ButtonBar、DropdownButton 等。

一般常用的 Button 是 MaterialButton、IconButton、FloatingActionButton。

RaisedButton:凸起的按钮,其实就是 Material Design 风格的 Button
FlatButton:扁平化的按钮
OutlineButton:线框按钮
IconButton:图标按钮
ButtonBar:按钮组
FloatingActionButton:浮动按钮
DropdownButton:下拉框按钮

 

参数详解

属性说明
onPressed点击事件监听,传 null 表示按钮禁用
onHighlightChanged水波纹高亮变化回调,按下返回true,抬起返回false
textTheme定义按钮主题
textColor按钮文字颜色
disabledTextColor无效按钮文字颜色
color按钮颜色
disabledColor无效按钮颜色
focusColor获取焦点 按钮颜色
hoverColor不知道啥玩应儿
highlightColor长按 按钮颜色
splashColor点击 水波纹 颜色
colorBrightness官网:用于此按钮的主题亮度。默认为主题的亮度
elevation阴影
focusElevation
hoverElevation
highlightElevation
disabledElevation
padding内边距
shape设置形状,如圆角,圆形等
clipBehavior

剪裁

Clip.antiAlias:剪辑具有抗锯齿功能

Clip.antiAliasWithSaveLayer:在剪辑后立即剪辑具有抗锯齿和saveLayer

Clip.hardEdge:剪辑,但不应用抗锯齿。

Clip.none:不剪辑。

focusNode 
materialTapTargetSize 
animationDuration 
child 

OutlineButton 特性

borderSide

线框    线颜色 ,如红色:BorderSide(color: Colors.red,),

clipBehavior

相框风格,如:Clip.antiAlias

RaisedButton.icon 特性

icon

图标

label

通常是文字

IconButton 特性

icon

图标

color

图标颜色

tooltip

长按文字提示

DropdownButton 特性    DropdownButton

hint

提示语

value

当前值

iconSize

下拉框图片大小
icon右边图标  默认为下三角

items

下拉框数据集合

onChanged

监听

FloatingActionButton 特性

child子元素,一般为 Icon,不推荐使用文字
tooltip长按文字提示
backgroundColor背景颜色(默认使用主题颜色)
mini是否是 mini 类型默认 false
设置位置,在外部使用(与FloatingActionButton同级)floatingActionButtonLocation。

FloatingActionButtonLocation.centerDocked: 底部剧中  与底部无间距

FloatingActionButtonLocation.centerFloat: 底部剧中  与底部有间距

FloatingActionButtonLocation.endDocked:右下角  与底部无间距

FloatingActionButtonLocation.endFloat:右下角  与底部有间距

FloatingActionButtonLocation.endTop:右上角  

FloatingActionButtonLocation.startTop:左上角

代码示例

  1. return Container(
  2. padding: EdgeInsets.all(8),
  3. child: Column(
  4. children: <Widget>[
  5. Wrap(
  6. spacing: 8,
  7. runSpacing: 8,
  8. children: <Widget>[
  9. RaisedButton(
  10. child: Text('普通按钮'),
  11. onHighlightChanged:(bool b) {
  12. print(b);
  13. },
  14. onPressed: (){},
  15. ),
  16. RaisedButton(
  17. child: Text('带颜色'),
  18. onPressed: (){},
  19. textColor: Colors.white,
  20. color: Colors.blue[200],
  21. ),
  22. RaisedButton(
  23. child: Text('带颜色带阴影'),
  24. onPressed: (){},
  25. textColor: Colors.white,
  26. color: Colors.blue[200],
  27. elevation: 15,
  28. ),
  29. Container(
  30. width: 300,
  31. height: 50,
  32. child: RaisedButton(
  33. child: Text('设置宽高'),
  34. onPressed: (){},
  35. textColor: Colors.white,
  36. color: Colors.blue[500],
  37. elevation: 15,
  38. ),
  39. ),
  40. RaisedButton.icon(
  41. icon: Icon(Icons.account_box),
  42. label: Text('我前边有图标'),
  43. onPressed: () {},
  44. ),
  45. RaisedButton(
  46. child: Text('圆角按钮'),
  47. onPressed: (){},
  48. color: Colors.red,
  49. shape: RoundedRectangleBorder(
  50. borderRadius: BorderRadius.circular(10)
  51. ),
  52. ),
  53. Container(
  54. width: 100,
  55. height: 100,
  56. child: RaisedButton(
  57. child: Text('圆形按钮'),
  58. onPressed: (){},
  59. color: Colors.red,
  60. shape: CircleBorder(
  61. // side: BorderSide(color: Colors.yellow[500])
  62. )
  63. ),
  64. ),
  65. RaisedButton(
  66. child: Text('水波纹'),
  67. onPressed: (){},
  68. color: Colors.blue[200],
  69. splashColor:Colors.yellow[100],
  70. ),
  71. RaisedButton(
  72. child: Text('长按变色'),
  73. onPressed: (){},
  74. color: Colors.blue[200],
  75. highlightColor:Colors.red[500],
  76. ),
  77. FlatButton(
  78. child: Text('扁平按钮'),
  79. onPressed: (){},
  80. color: Colors.blue[200],
  81. ),
  82. OutlineButton(
  83. child: Text('边框按钮'),
  84. onPressed: (){},
  85. textColor: Colors.red,
  86. borderSide: BorderSide(color: Colors.red,),
  87. ),
  88. IconButton(
  89. icon: Icon(Icons.access_alarms),
  90. onPressed: () {},
  91. color: Colors.deepOrange,
  92. splashColor:Colors.limeAccent,
  93. highlightColor:Colors.blue[300],
  94. tooltip:'干啥',
  95. ),
  96. DropdownButton(
  97. hint:new Text('请选择...'),
  98. value: value,//下拉菜单选择完之后显示给用户的值
  99. iconSize: 50.0,//设置三角标icon的大小
  100. items: <DropdownMenuItem>[
  101. DropdownMenuItem(
  102. value: '1',
  103. child: Text('One'),
  104. ),
  105. DropdownMenuItem(
  106. value: '2',
  107. child: Text('Two'),
  108. ),
  109. DropdownMenuItem(
  110. value: '3',
  111. child: Text('Three'),
  112. ),
  113. DropdownMenuItem(
  114. value: '4',
  115. child: Text('four'),
  116. ),
  117. DropdownMenuItem(
  118. value: '5',
  119. child: Text('five'),
  120. ),
  121. ],
  122. onChanged: (v) {
  123. setState(() {
  124. print(v);
  125. value = v;
  126. });
  127. },
  128. ),
  129. ],
  130. ),
  131. Container(
  132. color: Colors.pink[100],
  133. child: ButtonBar(
  134. children: <Widget>[
  135. RaisedButton(
  136. child: Text('按钮一'),
  137. onPressed: (){},
  138. textColor: Colors.white,
  139. color: Colors.blue,
  140. elevation: 15,
  141. ),
  142. RaisedButton(
  143. child: Text('按钮二'),
  144. onPressed: (){},
  145. textColor: Colors.white,
  146. color: Colors.blue,
  147. elevation: 15,
  148. ),
  149. ],
  150. ),
  151. ),
  152. Container(
  153. alignment: Alignment.center,
  154. child: Column(
  155. children: <Widget>[
  156. SizedBox(height: 30,),
  157. Text("一个Button事件与回调,更改数值"),
  158. SizedBox(height: 15,),
  159. Text("$count",style: TextStyle(fontSize: 50,color: Colors.purple,fontWeight:FontWeight.w800)),
  160. SizedBox(height: 20,),
  161. RaisedButton(
  162. child: Text('点我',style: TextStyle(fontSize: 18),),
  163. onPressed: (){setState(() {
  164. count += 1;
  165. });},
  166. textColor: Colors.white,
  167. color: Colors.blue,
  168. elevation: 15,
  169. ),
  170. ],
  171. ),
  172. )
  173. ],
  174. ),
  175. );
  1. //floatingActionButton 按钮
  2. floatingActionButton: FloatingActionButton(
  3. backgroundColor: Colors.red[500],
  4. child: Icon(Icons.add_comment),
  5. tooltip:'干啥',
  6. onPressed: () {print('我是Floating Action Button');},
  7. ),
  8. //floatingActionButton 按钮位置
  9. floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat,

效果图

 

 

完整代码 

 查看完整代码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/302607
推荐阅读
相关标签
  

闽ICP备14008679号