yattee/Apple TV/SubscriptionsView.swift
Arkadiusz Fal 0e02a6e25a Cells view
2021-06-25 00:13:27 +02:00

22 lines
489 B
Swift

import SwiftUI
struct SubscriptionsView: View {
@ObservedObject private var provider = SubscriptionVideosProvider()
@EnvironmentObject private var state: AppState
@Binding var tabSelection: TabSelection
var body: some View {
VideosView(tabSelection: $tabSelection, videos: videos)
.task {
Task.init {
provider.load()
}
}
}
var videos: [Video] {
provider.videos
}
}