flutter-tdd-clean-architecture-course
flutter-tdd-clean-architecture-course copied to clipboard
Hi Matt Thanks for the great tutorial. I really enjoyed it. It seems that if you provide a non-valid URL the app shows the circular activity indicator forever. I think...
You have this: ``` class NumberTriviaBloc extends Bloc { final GetConcreteNumberTrivia getConcreteNumberTrivia; final GetRandomNumberTrivia getRandomNumberTrivia; ``` Which is hardcoding a dependency on GetConcreteNumberTrivia and GetRandomNumberTrivia types. Shouldn't that really be:...
Thanks for this awesome work Reso After upgrading my flutter SDK, I get a white screen when the app starts, after reading the logs, all you have to do is...
> So, lo and behold because now I will introduce you to the Reso Coder's Flutter Clean Architecture Proposal - [Explanation & Project Structure](https://youtu.be/KjE2IDphA_U?list=PLB6lc7nQ1n4iYGE_khpXRdJkJEp9WOech&t=283) I really cannot get this statement...
Hello everyone and @ResoDev ! The DataConnectionChecker is good lib, but it seems me it doesn't work in some countries, because I compiled app and it didn't work, than I...
First thank you very much for the nice clean tutorial. My question is how would GraphQL [subscriptions](https://www.howtographql.com/graphql-js/7-subscriptions/) fit in our current clean architecture? Thank you very much!
Params
Hey ResoCoder! I am currently working on a flutter project, and have applied your architecture. It was hard in the beginning, but atm I have a pretty good understanding of...
If I want to put the application on Android phone we need to add a permission for internet in the manifest like so: `` Btw, very thanks for all this...
Random can return infinity, which has a null value for the number field, see json response below ``` { "text": "-Infinity is negative infinity.", "number": null, "found": true, "type": "trivia"...
Hey! I stumbled upon your channel by accident, glad I did! Nice stuff!! I do, however have a couple of questions. - Usually when you go to Clean you end...