Popular videos tab

This commit is contained in:
Arkadiusz Fal
2021-06-17 12:02:39 +02:00
parent 850f4e6a02
commit 9d7abda63f
18 changed files with 842 additions and 34 deletions

View File

@@ -0,0 +1,11 @@
enum TrendingCategory: String, CaseIterable, Identifiable {
case `default`, music, gaming, movies
var id: TrendingCategory.RawValue {
rawValue
}
var name: String {
rawValue.capitalized
}
}