Using flutter webview as home and pressing back button closes Application
问题 I'm trying to use a webview in flutter as my home page for my application. Everything loads just fine, however hitting the back button doesn't send me to the previous web page in the webview, it just exits the application. import 'package:flutter/material.dart'; import 'package:webview_flutter/webview_flutter.dart'; import 'package:url_launcher/url_launcher.dart'; class _StudentPortalState extends State<StudentPortal>{ _launchURL(url) async { if (await canLaunch(url)) { await launch(url); }