apn_actions 2.0.0
apn_actions: ^2.0.0 copied to clipboard
State management tools with actions
2.0.0 #
- BREAKING: useEvent is renamed to useAction
- BREAKING: useVoidEvent is renamed to useVoidAction
- Update dependencies
- Use useContext in stead of useIsMounted to check if the widget is still mounted
1.1.6 #
- Update dependencies
1.1.5 #
- Fix: controller is now properly connected when using a
PaginatedList
1.1.4 #
- Allow cupertino pull to refresh color to be overriden
1.1.3 #
- Fixed a bug in the paginated list where the error widget would not show up when an error occured.
1.1.2 #
- Use items length instead of item count for PaginatedList to avoid out of range issues with headers and loaders
1.1.1 #
- BREAKING: Make internal read nullable to avoid exceptions due to unmountend context during async operations.
1.1.0 #
- Fix bug in paginated list where pull to refresh would not work on iOS (again)
- BREAKING: PullToRefresh and PlatformLoader are no longer exposed by this package
1.0.5 #
- Fix bug in paginated list where pull to refresh would not work on iOS
1.0.4 #
- Fix bug in pagination widget where it would not load the next page
1.0.3 #
- BREAKING: all IActions should now implement an
execute()
method. This is to allow action tracking that we can use in our tests to see if actions are being executed correctly. (see /test directory for examples) - Added
verboseActionLogging
that is visible for testing to enable logging of actions. This is useful for debugging tests in your app.
0.0.4 #
- Added relevant hooks and widgets to be used with actions
- Loosen dart constraint to allow for 2.19.0
0.0.1 #
- Initial release of basic actions