yattee/Apple TV/PopularVideosView.swift
2021-06-25 00:48:28 +02:00

25 lines
511 B
Swift

import SwiftUI
struct PopularVideosView: View {
@ObservedObject private var provider = PopularVideosProvider()
@Binding var tabSelection: TabSelection
var body: some View {
VideosView(tabSelection: $tabSelection, videos: videos)
.task {
Task {
provider.load()
}
}
}
var videos: [Video] {
if provider.videos.isEmpty {
provider.load()
}
return provider.videos
}
}