mirror of
https://github.com/yattee/yattee.git
synced 2024-12-15 23:00:32 +05:30
20 lines
405 B
Swift
20 lines
405 B
Swift
import SwiftUI
|
|
|
|
struct SubscriptionsView: View {
|
|
@Binding var tabSelection: TabSelection
|
|
|
|
@ObservedObject private var provider = SubscriptionVideosProvider()
|
|
|
|
var body: some View {
|
|
VideosView(tabSelection: $tabSelection, videos: videos)
|
|
}
|
|
|
|
var videos: [Video] {
|
|
if provider.videos.isEmpty {
|
|
provider.load()
|
|
}
|
|
|
|
return provider.videos
|
|
}
|
|
}
|