如何更改 dart 中后退按钮的功能

问题描述 投票:0回答:1

如何更改 dart flutter 中后退按钮的功能 enter image description here

我真的没有尝试任何东西,因为说实话,我没有找到要尝试的东西

flutter dart mobile
1个回答
3
投票

您只需使用新的

leading
覆盖
AppBar
中的
IconButton
属性,然后设置您的特定方法:

AppBar(
 leading: IconButton(
  onPressed: () {
   print("clicked");
  },
  icon: Icon(Icons.abc),
  ),
 ),
© www.soinside.com 2019 - 2024. All rights reserved.