This library is only great if used correctly and sticking to these principles will help you unleash its potential. As your app grows, you will realize how flexible and maintainable it is, despite it size.
rootViewController
, that is never shared between Coordinators
.Coordinator
, never subscribe directly to any data store or make network requests. The reasoning behind these principles is that you should use a Coordinator for each UIViewController presented in the Navigation Flow. This allows you to encapsulate and simplify your UIViewControllers and makes understanding your code base an easy task.
Found errors? Think you can improve this documentation? Simply click the Edit link at the top of the page, and then the icon on Github to make your changes.