问题 I wanna change the "Webpage not available", in my WebView application, if the user doesn't have internet. I read the documentation, and try some another puglins import 'package:webview_flutter/webview_flutter.dart'; [...] class _MyHomePageState extends State<MyHomePage> { @override Widget build(BuildContext context) { return Scaffold( body: const WebView( initialUrl: 'https://google.com', javascriptMode: JavascriptMode.unrestricted, ), ); } } 回答1: You can try my plugin flutter_inappwebview.