I create a WebView app in Flutter. here is the code
WebView(
initialUrl: 'https://deoxy.tech/',
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (WebViewController webViewController) {
_controllerCompleter.future.then((value) => _controller = value);
_controllerCompleter.complete(webViewController);
},
),
But when the App open without the internet it's showing this
I want to show here another image when opening this app without the internet. like this
How do I do this?

