mirror of
https://github.com/yattee/yattee.git
synced 2024-11-13 01:28:22 +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()
|
||
|
}
|
||
|
}
|
||
|
}
|