Flutter Dio动画

时间:2020-08-13 07:59:17

标签: flutter

我正在使用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.可以使这种下载类型动起来。

谢谢

0 个答案:

没有答案