Learn how to use the WebView controller to use the back button to get to the previous webpage.
You can use this code
WillPopScope(
onWillPop: () async {
if (await controller.canGoBack()) {
controller.goBack();
return false;
} else {
return true;
}
},