// 根据 downloadUrl 和 savePath 下载文件_downloadFile(downloadUrl,savePath)async{awaitFlutterDownloader.enqueue(url:downloadUrl,savedDir:savePath,showNotification:true,// show download progress in status bar (for Android)openFileFromNotification:true,// click on notification to open downloaded file (f...
这里是使用的插件是path_provider,它是一个配合Dart的IO库以便在Flutter中实现文件读写的插件,Flutter中文网对该插件有着详细的介绍(https://flutterchina.club/reading-writing-files/),这里我们需要明白一个问题,就是iOS没有外置存储这一概念,因此需要对平台进行判断,代码如下: 代码语言:javascript 复制 // 获取存...