我正在使用dio软件包来快速下载文件。 我正在用这种方式
final response = await _dio.download(_fileUrl, savePath,
onReceiveProgress: _onReceiveProgress);
void _onReceiveProgress(int received, int total) {
if (total != -1) {
setState(() {
_progress = (received / total * 100).toStringAsFixed(0) + "%";
});
}
}
好像%10->%75->%100.
可以使这种下载类型动起来。
谢谢