Awesome talk. I don't know that I would go so far as to say any of these libraries qualify in the architecture category - they are more just different architecture patterns for managing change in your application. Redux and Bloc for example are unopinionated about how asynchronous actions are handled.
@HillelCoren4 жыл бұрын
Thanks! I've always struggled with app architecture, I was really happy to have found Brian's Redux implementation for Flutter which came with an opinion on handling asynchronous actions. I like the simplicity of his approach, no Redux thunks/sagas/epics required.
@ryanedge70144 жыл бұрын
@@HillelCoren I'll have to look at your source to see how you handle it - that's always been my biggest pain point with Redux. The recommendation from Abramov, the creator of Redux, was to do async calls outside of redux and populate the store with actions. Redux basically started as a paired down version of CQRS
@pengain4 Жыл бұрын
I would love to hear follow up talk about flutter web experience