From ef969a6f44f712fe1b8f42dbf43ada0fcbead819 Mon Sep 17 00:00:00 2001 From: Hevyn Date: Fri, 23 May 2025 17:16:12 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20=ED=97=A4=EB=B8=90=EB=B7=B0=20?= =?UTF-8?q?=EC=A0=9C=EC=9E=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GithubPractice.xcodeproj/project.pbxproj | 2 ++ .../View/LearnerViews/HevynView.swift | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/HevynView.swift diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index 8eb97da..2351c38 100644 --- a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj +++ b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj @@ -252,6 +252,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = BUKGH5MWAT; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; @@ -280,6 +281,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = BUKGH5MWAT; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; diff --git a/GithubPractice/GithubPractice/View/LearnerViews/HevynView.swift b/GithubPractice/GithubPractice/View/LearnerViews/HevynView.swift new file mode 100644 index 0000000..8202283 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/HevynView.swift @@ -0,0 +1,26 @@ +// +// HevynView.swift +// GithubPractice +// +// Created by fighting Joo on 5/23/25. +// + +import SwiftUI + +struct HevynView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Hevyn" + + var team: String = "집에가고픔" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + HevynView() +} From ab9f268485571a67213002ac5a714f812e5769ff Mon Sep 17 00:00:00 2001 From: Hevyn Date: Fri, 23 May 2025 17:18:23 +0900 Subject: [PATCH 2/2] Update LearnerViews.swift MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [Feat] 리스트에 헤븐 뷰 추가 --- 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 9f43bbc..e581407 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -13,5 +13,6 @@ let learnerViews: [any LearnerView] = [ JudyView(), FridayView(), ElenaView(), - JudyJView() + JudyJView(), + HevynView() ]