diff --git a/myot-si-ya/myot-si-ya/Assets.xcassets/AccentColor.colorset/Contents.json b/myot-si-ya/myot-si-ya/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/myot-si-ya/myot-si-ya/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/myot-si-ya/myot-si-ya/Assets.xcassets/AppIcon.appiconset/Contents.json b/myot-si-ya/myot-si-ya/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/myot-si-ya/myot-si-ya/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/myot-si-ya/myot-si-ya/Assets.xcassets/Contents.json b/myot-si-ya/myot-si-ya/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/myot-si-ya/myot-si-ya/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/myot-si-ya/myot-si-ya/ContentView.swift b/myot-si-ya/myot-si-ya/ContentView.swift new file mode 100644 index 0000000..931851c --- /dev/null +++ b/myot-si-ya/myot-si-ya/ContentView.swift @@ -0,0 +1,24 @@ +// +// ContentView.swift +// myot-si-ya +// +// Created by 남유성 on 3/2/24. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundStyle(.tint) + Text("Hello, world!") + } + .padding() + } +} + +#Preview { + ContentView() +} diff --git a/myot-si-ya/myot-si-ya/Preview Content/Preview Assets.xcassets/Contents.json b/myot-si-ya/myot-si-ya/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/myot-si-ya/myot-si-ya/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/myot-si-ya/myot-si-ya/myot_si_yaApp.swift b/myot-si-ya/myot-si-ya/myot_si_yaApp.swift new file mode 100644 index 0000000..c1d3171 --- /dev/null +++ b/myot-si-ya/myot-si-ya/myot_si_yaApp.swift @@ -0,0 +1,17 @@ +// +// myot_si_yaApp.swift +// myot-si-ya +// +// Created by 남유성 on 3/2/24. +// + +import SwiftUI + +@main +struct myot_si_yaApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +}