From 76706efea90469a9a2970660b5edda8f64ca69b6 Mon Sep 17 00:00:00 2001 From: Hidy Date: Fri, 23 May 2025 12:16:17 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20Hidy=20=EB=B7=B0=20=EC=A0=9C?= =?UTF-8?q?=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/HidyView.swift | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/HidyView.swift diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index 8eb97da..6ff2476 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 = H2WD8C55D7; 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 = H2WD8C55D7; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; diff --git a/GithubPractice/GithubPractice/View/LearnerViews/HidyView.swift b/GithubPractice/GithubPractice/View/LearnerViews/HidyView.swift new file mode 100644 index 0000000..50e2775 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/HidyView.swift @@ -0,0 +1,26 @@ +// +// HidyView.swift +// GithubPractice +// +// Created by yunsly on 5/23/25. +// + +import SwiftUI + +struct HidyView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Hidy" + + var team: String = "러너팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + HidyView() +} From b525115a5dc7903b6b8492a571f88c00b727bc95 Mon Sep 17 00:00:00 2001 From: Hidy Date: Fri, 23 May 2025 12:18:03 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Feat]=20=EB=A6=AC=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EC=97=90=20Hidy=20=EB=B7=B0=20=EC=B6=94=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 58e7960..9f0349b 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -10,5 +10,6 @@ import Foundation // TODO: 2. learnerViews에 자신의 View 추가하고 커밋! let learnerViews: [any LearnerView] = [ LumiView(), - FridayView() + FridayView(), + HidyView() ]