WillPopScope(
onWillPop: () async {
Navigator.pop(context, 'Pass Your Data Here');
return false;
},
child: // Your Widget
);
onPressed: () {
Navigator.pop(context);
}
leading: IconButton(icon:Icon(Icons.chevron_left),onPressed:() => Navigator.pop(context, false),),)