1
0
mirror of https://github.com/yattee/yattee.git synced 2025-04-27 15:30:33 +05:30
yattee/Apple TV/VideoLoading.swift
2021-07-19 00:41:19 +02:00

20 lines
276 B
Swift

import SwiftUI
struct VideoLoading: View {
var video: Video
var body: some View {
VStack {
Spacer()
VStack {
Text(video.title)
Text("Loading...")
}
Spacer()
}
}
}