1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-15 14:50:32 +05:30
yattee/Apple TV/SubscriptionsView.swift

22 lines
485 B
Swift
Raw Normal View History

2021-06-12 04:19:42 +05:30
import SwiftUI
struct SubscriptionsView: View {
@ObservedObject private var provider = SubscriptionVideosProvider()
2021-06-17 15:32:39 +05:30
@EnvironmentObject private var state: AppState
2021-06-12 04:19:42 +05:30
@Binding var tabSelection: TabSelection
var body: some View {
2021-06-17 15:32:39 +05:30
VideosView(tabSelection: $tabSelection, videos: videos)
2021-06-12 04:19:42 +05:30
.task {
async {
provider.load()
}
}
}
var videos: [Video] {
2021-06-14 23:35:02 +05:30
provider.videos
2021-06-12 04:19:42 +05:30
}
}