This is a simple demo app that let you express comments about TV series.
- Design overall UI
- Test API fetching via Postman
- Setup the frameworks
- Work on TV list and detail view
- Work on Cat list
- Implement creating comment
- Implement listener and filter for all comments
- Update movie detail view with comment list
- Add app preview gif to this file 🎉
- After cloning this project, please head to your Firebase dashboard to setup a GoogleServices-info.plist file and drag it to the resources folder in this project.
- Please sign up to get your own API Key from TMDB and The Cat API. Store the keys in a struct or where appropriate.
// SecretKeys.swift
struct SecretKeys {
static let movieAPIKey = "your key"
static let catAPIKey = "your key"
}