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

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
.xcodeproj
Set.xcodeproj

View File

@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -0,0 +1,13 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}

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()
}
}

View File

@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}

17
Set/SetApp.swift Normal file
View File

@@ -0,0 +1,17 @@
//
// SetApp.swift
// Set
//
// Created by Oliver Hnát on 08.04.2023.
//
import SwiftUI
@main
struct SetApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}