progress_loader_overlay 3.0.1 progress_loader_overlay: ^3.0.1 copied to clipboard
A flutter package to show an easy to use and fully customizable progress loader as an overlay.
[1.0.0] - 2020-11-05 #
- Initial release.
[2.0.0] - 2021-05-15 #
- [BREAKING] - Migrated to null-safety.
[3.0.0] - 2021-05-24 #
- [BREAKING]
- Fixed a bug causing the loader to not show if show was called before the previous loader was done dismissing.
- Refactored example code, and added a test page to visually test sync issues like the one stated above.
- This is probably not breaking anyone's code but could potentially do, so marking this as a breaking change.
[3.0.1] - 2021-05-25 #
- Fixed a bug causing the loader to not dismiss in some cases because of ProgressLoaderWidgetController.dismiss() future not completing in the default loader.
- Added an extension method in example code to show an nice way of handling FutureTicker.
- If you are using ProgressLoaderWidgetController in your code and awaiting an AnimationController.dismiss() to call ProgressLoaderWidgetController.dismiss() then check the updated example code to avoid making the same mistake as I did.