mirror of
https://github.com/yattee/yattee.git
synced 2024-12-14 06:10:32 +05:30
25 lines
516 B
Swift
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
|
|
}
|
|
}
|