flutter_architecture_samples
flutter_architecture_samples copied to clipboard
TodoMVC for Flutter
Please add an Async Redux example. It looks very promising. As author describes it, AsyncRedux is a special version of Redux which is easy to learn, use and test, has...
This updates the states_rebuilder implementation to use the 1.15.0 version. Changes: * **Immutable state:** Now Todo and TodosState are immutable objects. * methods in TodosState are static pure functions *...
What do u suggest?
shared_preferences support flutter web from 0.5.6 code can be updated, no more need for two main, main and main_web at least for mobx example
use change notifier provider
Hi, i am learning Redux, your sample is very helpful. But I have some questions and hope to answer them... In **redux** sample, when i click `Checkbox`, StoreConnector(FilteredTodos) will return...
### Web socket as data Provider ---------------------- `todos_repository_simple` explains nicely about the benefits of using repository as singleton. But no where it's mentioned how to handle the web sockets. How...
I was wondering the reasoning behind the `AddEditScreen` not using the store to save its state. I would've liked to see how redux is supposed to be used in the...
Alibaba create their own [Fish Redux](https://github.com/alibaba/fish-redux) architecture based on redux as you can guess. It'll be nice to see implementation of this framework.
Hi Brian, I'm looking for a solution for storing streamsubscriptions in my middleware. How I can store the streamsubscription and cancel them if i need too? Especially in flutter_architecture_samples/firestore_redux/lib/middleware/store_todos_middleware.dart line...