yattee/Apple TV/ChannelView.swift

27 lines
663 B
Swift
Raw Normal View History

2021-06-11 21:11:59 +00:00
import SwiftUI
struct ChannelView: View {
@ObservedObject private var provider = ChannelVideosProvider()
@ObservedObject var state: AppState
@Binding var tabSelection: TabSelection
var body: some View {
2021-06-11 21:40:35 +00:00
VideosView(state: state, tabSelection: $tabSelection, videos: videos)
2021-06-11 21:11:59 +00:00
}
var listRowInsets: EdgeInsets {
EdgeInsets(top: .zero, leading: .zero, bottom: .zero, trailing: 30)
}
var videos: [Video] {
if state.channelID != provider.channelID {
provider.videos = []
provider.channelID = state.channelID
provider.load()
}
return provider.videos
}
}