flutter_redux_hooks
library
Classes
-
StoreProvider<S>
-
Provides a Redux
Store
to all descendants of this Widget. This should
generally be a root widget in your App. Connect to the Store provided
by this Widget using a StoreConnector
or StoreBuilder
.
Functions
-
useDispatch<S>()
→ Dispatch
-
A hook to access the redux
dispatch
function
-
useSelector<State, Output>(Selector<State, Output> selector, [EqualityFn? equalityFn])
→ Output?
-
A hook to access the redux store's state. This hook takes a selector function
as an argument. The selector is called with the store state.
-
useStore<S>()
→ Store<S>
-
A hook to access the redux store
Exceptions / Errors
-
StoreProviderError<S>
-
If the StoreProvider.of method fails, this error will be thrown.