使用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,
);
},
),
我现在如何显示它?每个地方的每个人都只能通过将文件放在资产文件夹中来编写。但是我需要从下载它的设备的本地存储中完全下载它。我该怎么办?