1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 06:10:32 +05:30
yattee/Apple TV/PopularVideosView.swift
Arkadiusz Fal 0e02a6e25a Cells view
2021-06-25 00:13:27 +02:00

25 lines
516 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.init {
provider.load()
}
}
}
var videos: [Video] {
if provider.videos.isEmpty {
provider.load()
}
return provider.videos
}
}