如何从设备的本地存储中加载网页

时间:2020-11-02 23:17:58

标签: flutter dart

使用InAppWebView插件,加载整个网页。

            RaisedButton(
            child: Text('Press Me to downloadPage'),
            onPressed: () async {
              final taskId = await FlutterDownloader.enqueue(
                url: 'https://zakon.rada.gov.ua/laws/file/661-15',
                savedDir: (await getExternalStorageDirectory()).path,
                showNotification: true,
                openFileFromNotification:
                    true,
              );
            },
          ),

我现在如何显示它?每个地方的每个人都只能通过将文件放在资产文件夹中来编写。但是我需要从下载它的设备的本地存储中完全下载它。我该怎么办?

0 个答案:

没有答案