WillPopScope(
onWillPop: () async {
log('WillPopScope: working in call');
return new Future(() => true);
}
child: Scaffold()
)
I am using go_router for navigating through pages in Web. Here onWillPop seems to be never called. How can we listen when back button pressed on WEB.