如果我有一个这样的AppBar:
如何向其添加可点击的图标?
答案 0 :(得分:2)
您可以通过将IconButton小部件添加到AppBar的actions
列表中来向AppBar添加图标。
AppBar(
title: Text('My App'),
actions: <Widget>[
IconButton(
icon: Icon(
Icons.settings,
color: Colors.white,
),
onPressed: () {
// do something
},
)
],
),
答案 1 :(得分:2)