flutter_async 0.2.0 flutter_async: ^0.2.0 copied to clipboard
Handle async tasks with ease through automatic loading, error handling, and native widget integration.
Changelog #
0.0.1 #
- Initial release.
0.0.1+1 #
- Legacy support to Dart SDK 2.12 & Flutter SDK <3.0
0.1.0 #
- Bumped the minimum required Dart SDK version to 2.17.
0.2.0 #
- Breaking change: AsyncBuilder now has one unified const constructor. To avoid confusion with the FutureBuilder/StreamBuilder api, the following parameters were renamed:
-
AsyncBuilder.future, renamed to -> AsyncBuilder.getFuture.
-
AsyncBuilder.stream, renamed to -> AsyncBuilder.getStream.
- Added [Async] widget for void async tasks, utilities and inherited builder (changes all children loaders and other builders).