From f91df6a3214f9440bd3b4199ec4a52598c534c8f Mon Sep 17 00:00:00 2001 From: Nam Yuseong <75793880+99yuseong@users.noreply.github.com> Date: Sat, 2 Mar 2024 16:07:35 +0900 Subject: [PATCH] Feat: #9 Create Projects --- .../AccentColor.colorset/Contents.json | 11 +++++++++ .../AppIcon.appiconset/Contents.json | 13 ++++++++++ .../myot-si-ya/Assets.xcassets/Contents.json | 6 +++++ myot-si-ya/myot-si-ya/ContentView.swift | 24 +++++++++++++++++++ .../Preview Assets.xcassets/Contents.json | 6 +++++ myot-si-ya/myot-si-ya/myot_si_yaApp.swift | 17 +++++++++++++ 6 files changed, 77 insertions(+) create mode 100644 myot-si-ya/myot-si-ya/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 myot-si-ya/myot-si-ya/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 myot-si-ya/myot-si-ya/Assets.xcassets/Contents.json create mode 100644 myot-si-ya/myot-si-ya/ContentView.swift create mode 100644 myot-si-ya/myot-si-ya/Preview Content/Preview Assets.xcassets/Contents.json create mode 100644 myot-si-ya/myot-si-ya/myot_si_yaApp.swift 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() + } + } +}