flutter_redux
A set of utility Widgets that Provide and Connect to a Redux Store
0.10.0
41K downloads/mo
#1594 most downloaded on pub.dev
brianegan/flutter_redux
What this package is like to depend on
Last release 4 years ago
no release in 18 months
Release timing varies
gaps range from 1 weeks to 12 months
Nearly every release is documented
notes for 24 of 24 stable releases
Nothing withdrawn
no release was ever pulled
9 years old
25 releases · first in 2017
0 releases in the last 12 months
see the full history below
Release timeline
25 releases · Aug 2017 to May 2022
2018
2019
2020
2021
2022
2023
2024
2025
2026
Releases
latest 25-
0.10.014 May 2022 -
0.10.0-beta.105 Apr 2022 pre-release -
0.9.021 Mar 2022 -
0.8.218 Mar 2021 -
0.8.118 Mar 2021 -
0.8.018 Mar 2021Release notes
Open source →- Breaking Change: added null-safety
- Breaking Change: updated to redux 5.0.0
- Breaking Change: added null-safety
-
0.7.018 Oct 2020Release notes
Open source →- Improved error messages in converters
- Update InheritedWidget methods to latest version
- Improved error messages in converters
-
0.6.004 Dec 2019Release notes
Open source →- Breaking Change:
onWillChangenow receives previous and newViewModel- Breaking Change: Supports Redux 4.x - 5.0
- Breaking Change:
-
0.5.406 Nov 2019Release notes
Open source →- Bugfix: Rebuilding the Widget will always rebuild with latest data
- Enforce pedantic lint rules
- Docs
- Document all public members
- Add more examples to README
- Bugfix: Rebuilding the Widget will always rebuild with latest data
-
0.5.307 Jan 2019Release notes
Open source →- Maintenance update * Remove dependency on test package, conflicts with latest Flutter * Update docs * Update example dependencies to latest versions * Apply stricter analysis options
-
0.5.219 Jun 2018Release notes
Open source →- Add
onDidChange-- This callback will be run after the ViewModel has changed and the builder method is called- Add
onInitialBuild-- This callback will be run after the builder method is called the first time
- Add
- Add
-
0.5.131 May 2018 -
0.5.030 Mar 2018 -
0.4.127 Mar 2018Release notes
Open source →- Update example to wrap entire app with StoreProvider
- Throw more helpful error message if no StoreProvider is found in the tree
- Update example to wrap entire app with StoreProvider
-
0.4.020 Mar 2018Release notes
Open source →- Works with Dart 2 (no longer supports Dart 1)
- Stronger Type info Required
- Breaking Changes:
StoreProvidernow requires generic type info:new StoreProvider<AppState>new StoreProvider.of(context).storeis nowStoreProvider.of<AppState>(context)
- Works with Dart 2 (no longer supports Dart 1)
-
0.3.619 Mar 2018Release notes
Open source →- Add
onWillChange. This function will be called before the builder and can be used for working with Imperative APIs, such as Navigator, TextEditingController, or TabController.
- Add
-
0.3.514 Feb 2018Release notes
Open source →- Bugfix:
onInitwas not called before the initial ViewModel is constructed.
- Bugfix:
-
0.3.425 Nov 2017 -
0.3.325 Nov 2017Release notes
Open source →- Optional
onDisposefunction - TheStoreConnectorandStoreBuilderWidgets now accept anonDisposefunction that will be run when the Widget is removed from the Widget tree (using State.dispose under the hood). TheonDisposefunction takes the Store as the first parameter, and can be used to dispatch actions that remove stale data from your State tree.- Move to github
- Optional
-
0.3.231 Oct 2017Release notes
Open source →- Optional
onInitfunction - TheStoreConnectorandStoreBuilderWidgets now accept anonInitfunction that will be run the first time the Widget is created (using State.initState under the hood). TheonInitfunction takes the Store as the first parameter, and can be used to dispatch actions when your Widget is first starting up. This can be useful for data fetching.ignoreChangefunction -StoreConnectornow takes an advanced usage / optional functionignoreChange. It will be run on every storeonChangeevent to determine whether or not theViewModelandWidgetshould be rebuilt. This can be useful in some edge cases, such as displaying information that has been deleted from the store while it is animating off screen.- Documentation updates
- Optional
-
0.3.128 Aug 2017Release notes
Open source →- Add the ability to build only once, while avoiding rebuilding on change. This can be handy if you need to manage access to the Store, but want to handle when to update your own Widgets.
-
0.3.028 Aug 2017Release notes
Open source →- Make
StoreProvider.ofa factory rather than a static method- Additional documentation based on questions from the community
- Make
-
0.2.027 Aug 2017 -
0.1.124 Aug 2017 -
0.1.024 Aug 2017Release notes
Open source →Initial Version of the library.
- Includes the ability to pass a Redux
Storedown to descendant Widgets using aStoreProvider. - Includes the
StoreConnectorandStoreBuilderWidgets that capture theStorefrom theStoreProviderand build a Widget in response.
- Includes the ability to pass a Redux