You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And on the web, I found that _response = await http.Client().send('GET", ...) seems to download the entire file before advancing.
The callback passed to _response.stream.listen( ... ) only gets called once with the entire file downloaded, and then onDone is called immediately - this makes it impossible to add a progress loader with incremental download percentages.
On macos, I see the incremental download percentages with no issue.
The text was updated successfully, but these errors were encountered:
I implemented the code in this Stackoverflow answer: https://stackoverflow.com/a/61021018/937841
And on the web, I found that
_response = await http.Client().send('GET", ...)
seems to download the entire file before advancing.The callback passed to
_response.stream.listen( ... )
only gets called once with the entire file downloaded, and thenonDone
is called immediately - this makes it impossible to add a progress loader with incremental download percentages.On macos, I see the incremental download percentages with no issue.
The text was updated successfully, but these errors were encountered: