mirror of
https://github.com/yattee/yattee.git
synced 2025-08-09 20:24:06 +00:00
Add list views for channels, playlists and placeholders
This commit is contained in:
15
Shared/Views/PlaceholderListItem.swift
Normal file
15
Shared/Views/PlaceholderListItem.swift
Normal 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()
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user