binSaed / flutter_cached_pdfview

Enhanced PDF view for Flutter.
https://pub.dev/packages/flutter_cached_pdfview
MIT License
117 stars 67 forks source link

Removed a multiplication by 100 #98

Open nTerior opened 1 year ago

nTerior commented 1 year ago

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.

This has now been fixed.