From b9c991c96cb0343a70cbd464cb2cee04c979e578 Mon Sep 17 00:00:00 2001 From: yeong Date: Tue, 26 May 2026 17:14:06 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=ED=95=98=EB=AA=A8=EB=B7=B0=20=EB=A7=8C?= =?UTF-8?q?=EB=93=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GithubPractice.xcodeproj/project.pbxproj | 2 ++ .../View/LearnerViews/HamoView.swift | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/HamoView.swift diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index ef6aa66..81ccfec 100644 --- a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj +++ b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj @@ -254,6 +254,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = NKD752LBMV; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; @@ -283,6 +284,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = NKD752LBMV; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; diff --git a/GithubPractice/GithubPractice/View/LearnerViews/HamoView.swift b/GithubPractice/GithubPractice/View/LearnerViews/HamoView.swift new file mode 100644 index 0000000..6045c4e --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/HamoView.swift @@ -0,0 +1,25 @@ +// +// HamoView.swift +// GithubPractice +// +// Created by Seoyeong_Kim on 5/26/26. +// + +import SwiftUI + +struct HamoView: LearnerView { + let name: String = "하모" + + let team: String = "오도독" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + HamoView() +} From 9e8fdb94f1318f19b6dad85fd8a7091f84e529fc Mon Sep 17 00:00:00 2001 From: yeong Date: Tue, 26 May 2026 17:16:41 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=ED=95=98=EB=AA=A8=EB=B7=B0=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GithubPractice/GithubPractice/Model/LearnerViews.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..c5e2aa3 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,5 +11,6 @@ import SwiftUI let learnerViews: [any LearnerView] = [ LumiView(), JudyView(), - IrisView() + IrisView(), + HamoView() ]