Initial Commit

This commit is contained in:
2023-04-08 13:38:12 +01:00
commit 94113e80fd
7 changed files with 81 additions and 0 deletions

26
Set/ContentView.swift Normal file
View File

@@ -0,0 +1,26 @@
//
// ContentView.swift
// Set
//
// Created by Oliver Hnát on 08.04.2023.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
}
.padding()
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}