mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-03-29 13:42:00 +02:00
20 lines
312 B
Swift
Executable File
20 lines
312 B
Swift
Executable File
// Copyright © 2019 Poikile Creations. All rights reserved.
|
|
|
|
import SwiftUI
|
|
|
|
struct Home : View {
|
|
var body: some View {
|
|
VStack {
|
|
Text("Hello World")
|
|
}
|
|
}
|
|
}
|
|
|
|
#if DEBUG
|
|
struct Home_Previews : PreviewProvider {
|
|
static var previews: some View {
|
|
Home()
|
|
}
|
|
}
|
|
#endif
|