Before: The download's progress has been multiplied by 100
Resulting bug: The default download progress indicator (a CircularProgressIndicator) is always displaying a state of 100% downloaded, since the range any (Flutter-default) progress indicator (CircularProgressIndicator and LinearProgressIndicator) uses a value range of 0 to 1. Therefore, by multiplying with 100, the visual progress indication is lost.
Before: The download's progress has been multiplied by
100
Resulting bug: The default download progress indicator (a
CircularProgressIndicator
) is always displaying a state of100%
downloaded, since the range any (Flutter-default) progress indicator (CircularProgressIndicator and LinearProgressIndicator) uses a value range of0
to1
. Therefore, by multiplying with100
, the visual progress indication is lost.This has now been fixed.