24 lines
426 B
Swift
24 lines
426 B
Swift
|
//
|
||
|
// ContentView.swift
|
||
|
// Secretive
|
||
|
//
|
||
|
// Created by Max Goedjen on 2/18/20.
|
||
|
// Copyright © 2020 Max Goedjen. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct ContentView: View {
|
||
|
var body: some View {
|
||
|
Text("Hello, World!")
|
||
|
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
struct ContentView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|