In your appBar
you can replace the leading
parameter by what you want.
Try replacing it with :
AppBar(
leading: IconButton(
icon: Icon(Icons.arrow_back),
onPressed: () {
Navigator.of(context).pop();
},
),
),
It should remove the tooltip
. If you want to customize it, see the tooltip
parameter of IconButton