commit 94113e80fd13babf50be2728b07bf7502dc8f850 Author: oliverhnat Date: Sat Apr 8 13:38:12 2023 +0100 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..df4eead --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.xcodeproj +Set.xcodeproj diff --git a/Set/Assets.xcassets/AccentColor.colorset/Contents.json b/Set/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/Set/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Set/Assets.xcassets/AppIcon.appiconset/Contents.json b/Set/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/Set/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Set/Assets.xcassets/Contents.json b/Set/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Set/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Set/ContentView.swift b/Set/ContentView.swift new file mode 100644 index 0000000..ae7c487 --- /dev/null +++ b/Set/ContentView.swift @@ -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() + } +} diff --git a/Set/Preview Content/Preview Assets.xcassets/Contents.json b/Set/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Set/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Set/SetApp.swift b/Set/SetApp.swift new file mode 100644 index 0000000..9ffff0b --- /dev/null +++ b/Set/SetApp.swift @@ -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() + } + } +}