跟随《Flutter实战·第二版》学习,建议直接看原书
按钮
Material 组件库中提供了多种按钮组件如ElevatedButton、TextButton、OutlineButton等,它们都是直接或间接对RawMaterialButton组件的包装定制,所以他们大多数属性都和RawMaterialButton一样
先介绍其默认外观,而按钮的外观大都可以通过属性来自定义,我们在后面统一介绍这些属性。
另外,所有 Material 库中的按钮都有如下相同点:
- 按下时都会有“水波动画”(又称“涟漪动画”,就是点击时按钮上会出现水波扩散的动画)
- 有一个onPressed属性来设置点击回调,当按钮按下时会执行该回调,如果不提供该回调则按钮会处于禁用状态,禁用状态不响应用户点击
ElevatedButton
ElevatedButton 即"漂浮"按钮,它默认带有阴影和灰色背景。按下后,阴影会变大
使用ElevatedButton非常简单,如:
ElevatedButton(
child: Text("normal"),
onPressed: () {},
);
TextButton
TextButton即文本按钮,默认背景透明并不带阴影。按下后,会有背景色
使用 TextButton 也很简单,代码如下:
TextButton(
child: Text("normal"),
onPressed: () {},
)
OutlineButton -> OutlinedButton
@Deprecated(
'Use OutlinedButton instead. See the migration guide in flutter.dev/go/material-button-migration-guide). '
'This feature was deprecated after v1.26.0-18.0.pre.',
)
OutlinedButton默认有一个边框,不带阴影且背景透明。按下后,边框颜色会变亮、同时出现背景和阴影(较弱)
OutlinedButton(onPressed: (){}, child: Text("OutlinedButton"))
IconButton
IconButton是一个可点击的Icon,不包括文字,默认没有背景,点击后会出现背景
代码如下:
IconButton(onPressed: (){}, icon: Icon(Icons.thumb_up))
带图标的按钮
ElevatedButton、TextButton、OutlineButton都有一个icon 构造函数,通过它可以轻松创建带图标的按钮
代码如下:
ElevatedButton.icon(onPressed: (){}, icon: Icon(Icons.send), label: Text("发送")),
OutlinedButton.icon(onPressed: (){}, icon: Icon(Icons.add), label: Text("添加")),
TextButton.icon(
onPressed: (){
},
icon: Icon(Icons.info),
label: Text("详情"),
)