Add list views for channels, playlists and placeholders

This commit is contained in:
Arkadiusz Fal
2022-12-13 11:40:08 +01:00
parent d38a507be5
commit 1cd2dbe5f7
11 changed files with 332 additions and 43 deletions

View File

@@ -0,0 +1,15 @@
import Defaults
import SwiftUI
struct PlaceholderListItem: View {
var body: some View {
VideoBanner(id: UUID().uuidString, video: .fixture)
.redacted(reason: .placeholder)
}
}
struct PlaceholderListItem_Previews: PreviewProvider {
static var previews: some View {
PlaceholderListItem()
}
}