Open NutanNiraula opened 4 years ago
Don't get your mean in these words
the dependencies that are opionated
My solutions:
"this" + "title"
let x = 2
-> let x: Int = 2
I love the way MVVM combines with RxSwift, with combineLastest
, zip
, merge
, denounce
, throttle
, BehaviorRelay
, PublishSubjecy
... It will help a lot to handle async tasks but need process it sync and it works like a charm in my current project of my company, we have face to a screen with very complex and it deals with it very nicely.
Sadly, I only work with MVC, MVVM atm, but really excited to learn the new thing, VIPER will be my next thing.
I think the downside of it, that it is the third-party framework, also increase your app size a little bit. But besides that, it helps you solve the problem with async tasks as I mention above, the best choice for MVVM, a good writing style...
Thank you for your answers, this concludes my review. Other members of the team will also take a look and help with final decision. I wish you best of luck. 🍀
Hi, we have checked the codebase and tests from your submission, the app itself is decent and pleasant to use. Here I would like to bring up some more things to understand your decisions better.
You are using many dependencies in the project, how do you decide which dependencies to pick, do you think there is adverse effect of bringing in many dependencies specially the dependencies that are opionated?
If an app is too large in size and starts taking long time to compile, how do you approach in solving this issue?
Its interesting to see you use MVVM with RxSwift. Is there any particular reason behind choosing this particular pattern? Have you worked with other design patterns like Clean architecture, VIP or VIPER? How do you decide which architecture to use?
Is there any downside to using RxSwift that you know of? What are the advantages?