Most Popular Movies app presents a list and details about the most popular movies rated on TMDB data base.
Most Popular Movies don't use third party frameworks, so you just need to download and run to get started.
SwiftUI
Motivation to use SwiftUI:
- Provides mechanisms for reactive programming;
- No AutoLayout related problems;
- Declarative and simple way to build UI;
- Easy to build interchangeable components.
MVVM
Motivation to use MVVM:
- Better separation of Concerns;
- Easier to write tests;
- Easy to integrate with SwiftUI.