mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
22 lines
413 B
Swift
22 lines
413 B
Swift
|
import SwiftUI
|
||
|
|
||
|
struct PlaceholderProgressView: View {
|
||
|
var body: some View {
|
||
|
VStack {
|
||
|
Spacer()
|
||
|
HStack {
|
||
|
Spacer()
|
||
|
ProgressView()
|
||
|
Spacer()
|
||
|
}
|
||
|
Spacer()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct PlaceholderProgressView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
PlaceholderProgressView()
|
||
|
}
|
||
|
}
|