commit 316fec07d93ce457b98197e102cadba0d92e445c Author: Felix Förtsch Date: Thu Jul 29 23:01:43 2021 +0200 Initial Commit diff --git a/StudyStructure/Assets.xcassets/AccentColor.colorset/Contents.json b/StudyStructure/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/StudyStructure/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/StudyStructure/Assets.xcassets/AppIcon.appiconset/Contents.json b/StudyStructure/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..9221b9b --- /dev/null +++ b/StudyStructure/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,98 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "ipad", + "scale" : "1x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/StudyStructure/Assets.xcassets/Contents.json b/StudyStructure/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/StudyStructure/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/StudyStructure/ContentView.swift b/StudyStructure/ContentView.swift new file mode 100644 index 0000000..4a2b3a4 --- /dev/null +++ b/StudyStructure/ContentView.swift @@ -0,0 +1,21 @@ +// +// ContentView.swift +// StudyStructure +// +// Created by Felix Förtsch on 29.07.21. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + Text("Hello, world!") + .padding() + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} diff --git a/StudyStructure/Preview Content/Preview Assets.xcassets/Contents.json b/StudyStructure/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/StudyStructure/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/StudyStructure/StudyStructureApp.swift b/StudyStructure/StudyStructureApp.swift new file mode 100644 index 0000000..5c05842 --- /dev/null +++ b/StudyStructure/StudyStructureApp.swift @@ -0,0 +1,17 @@ +// +// StudyStructureApp.swift +// StudyStructure +// +// Created by Felix Förtsch on 29.07.21. +// + +import SwiftUI + +@main +struct StudyStructureApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +}