我正在推一个fullscreenDialog设置为true的屏幕。左上方添加了一个取消图标。我想用我自己的图标和功能(删除)替换此取消图标。我如何覆盖该图标?
uttx8gqw1#
您需要使用AppBar的leading属性来覆盖X按钮。参见以下示例:
AppBar
leading
appBar: AppBar( title: Text("2nd page"), leading: IconButton( icon: Icon(Icons.delete), onPressed: (){ // handle delete here }), )
bq8i3lrv2#
appBar: AppBar( title: Text("2nd page"), leading: Container() )
如果你想隐藏按钮。
xmjla07d3#
appBar: AppBar( title: Text(AppLocalizations.of(context)!.profile), leading: null, leadingWidth: 0, )
3条答案
按热度按时间uttx8gqw1#
您需要使用
AppBar
的leading
属性来覆盖X按钮。参见以下示例:bq8i3lrv2#
如果你想隐藏按钮。
xmjla07d3#