在 flutter 中长按操作栏的后退箭头显示 "Back" toast,如何删除它?

Long hold on back arrow of action bar in flutter shows a "Back" toast, how to remove that?

如何移除长按后退箭头时操作栏上显示的吐司。

在您的 appBar 中,您可以根据需要替换 leading 参数。

尝试将其替换为:

AppBar(
   leading: IconButton(
      icon: Icon(Icons.arrow_back),
      onPressed: () {
         Navigator.of(context).pop();
      },
   ),
),

它应该删除 tooltip。如果要自定义,参见IconButton

tooltip参数

使用 IconButton 作为您 AppBar 喜欢的主要小部件,

Scaffold(
  appBar: AppBar(
    leading: IconButton(
      onPressed: () {
        Navigator.of(context).pop();
      },
      icon: Icon(Icons.arrow_back),
      // tooltip: 'Back',  // this cause the overlay 
    ),
  ),
);