我正在使用this library,并且我有以下代码:
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: title),
body: InAppWebView(
initialUrl: widget.url,
onWebViewCreated: onViewCreated,
onLoadStart: onUrlLoading,
onLoadStop: (InAppWebViewController contr, String url) async {
await handlePreferences();
},
onConsoleMessage: (InAppWebViewController contr, ConsoleMessage msg) {
setState(() {
_loading = false;
});
},
)
);
}
我需要在onLoadStop完成运行之前不显示Web视图。在当前状态下,您可以在代码运行完成之前简要地查看该网站。有没有办法在onLoadStop完成之前隐藏Web视图?