在onLoadStop运行完毕之前,如何隐藏InAppWebView?

时间:2019-01-22 15:01:15

标签: dart flutter

我正在使用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视图?

0 个答案:

没有答案