I'm using Navigation 2 and setUrlStrategy(PathUrlStrategy());
I added WillPopScope
but the onWillPop
is not called when clicking the browser's back button.
Widget build(context) {
return WillPopScope(
onWillPop: () async {
print('here');
if (currentStep == 0) {
return false;
}
return true;
},
child: Scaffold(...