mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
20 lines
276 B
Swift
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()
|
|
}
|
|
}
|
|
}
|