iOS-Clean-Architecture-MVVM
iOS-Clean-Architecture-MVVM copied to clipboard
Template iOS app using Clean Architecture and MVVM. Includes DIContainer, FlowCoordinator, DTO, Response Caching and one of the views in SwiftUI
Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.6 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...
I am not understanding the structure of code flow. can you please make a video from beginning to ending using storyboard design.
First of all, thank you for your brilliant work publishing your article and the example source code. I have a question regarding the diagram in your article, according to your...
Storyboard can be instantiated using identifier also. So added a defaultIdentifier that will be of format `MyViewControllerIdentifier`. And also updated the default implementation of storyboard initialization to accept the identifier.
I create the observer in my ViewModel as follows: `let testObserver: Observable = Observable(.none)` And in my ViewController: ``` override func viewDidLoad() { self.viewModel.testObserver.observe(on: self) { [weak self] _ in...