25 lines
456 B
Swift
25 lines
456 B
Swift
//
|
|
// ComingSoonView.swift
|
|
// Paces
|
|
//
|
|
// Created by Isaac Greene on 2022-09-16.
|
|
//
|
|
|
|
import SwiftUI
|
|
import UIKit
|
|
|
|
struct ComingSoonView: View {
|
|
var body: some View {
|
|
VStack {
|
|
Image(systemName: "clock.arrow.circlepath")
|
|
.frame(maxWidth: 100)
|
|
Text("Coming soon!")
|
|
}
|
|
}
|
|
}
|
|
|
|
struct ComingSoonView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
ComingSoonView()
|
|
}
|
|
}
|