-
-
Notifications
You must be signed in to change notification settings - Fork 134
a ProgressDialogType.Download bug for 1.2.3 #62
Comments
can you please use the latest flutter version |
my use flutter v1.12.13+hotfix.5 and v1.17.1 , Both errors occurred in version 1.2.3 |
I encountered the same problem, and my flutter version is the latest. |
Same here, just ping me if I can help you out with debugging. |
Same here, but version 1.2.2 the error persists. |
Same error :(( |
can someone give me a piece of code to reproduce this issue |
I found the same error today, espically when I use the my code as below : pr = ProgressDialog(context,
type: ProgressDialogType.Normal, isDismissible: false, showLogs: true);
await dio.download(link, path, onReceiveProgress: (rec, total) {
downloadingRate = rec / total;
downloadingRateString =
"Downloading ..." + ((rec / total) * 100).toStringAsFixed(0) + "%";
pr.update(message: downloadingRateString);
}); |
Sorry guys, actually I was involved in some other stuff, I will resolve this asap. Thanks a ton all of you! |
just 1.2.3
test code:
error:
The text was updated successfully, but these errors were encountered: