flutter change appbar back icon
appBar: AppBar(
leading: IconButton(
onPressed: () {
Navigator.pop(context);
},
icon: Icon(Icons.home_outlined),
),
title: Text(
"Second Page",
style: TextStyle(color: Colors.black),
),
),