flutter_rxstore 0.3.0 flutter_rxstore: ^0.3.0 copied to clipboard
Contains a Flutter widget to easily obtain a reference to an rxstore
flutter_rxstore #
A Flutter widget to easily obtain an rxstore.
StoreProvider #
Pass the store to the provider by instantiating a StoreProvider
widget.
StoreProvider(
store: store,
child: YourAwesomeApp()
);
If you need a reference to the store, call the static method of<State>
. Be sure to pass the type of your store to the method, else it won't be able to find the provider.
final Store<State> store = StoreProvider.of<State>();