From 4334965888353eb0867d513c1a3a154f6f29db4c Mon Sep 17 00:00:00 2001 From: "HyebeenLee(Emma)" Date: Fri, 23 May 2025 17:16:11 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=EC=97=A0=EB=A7=88=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/Model/LearnerViews.swift | 3 ++- .../View/LearnerViews/EmmaView.swift | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/EmmaView.swift diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index 9f43bbc..e9301f7 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(), + EmmaView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/EmmaView.swift b/GithubPractice/GithubPractice/View/LearnerViews/EmmaView.swift new file mode 100644 index 0000000..cb6df22 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/EmmaView.swift @@ -0,0 +1,26 @@ +// +// LumiView.swift +// GithubPractice +// +// Created by 이혜빈 on 5/23/25. +// + +import SwiftUI + +struct EmmaView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Emma" + + var team: String = "러너팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + EmmaView() +} From 09bad95a98dd05653f6350077030f9fbf80f543e Mon Sep 17 00:00:00 2001 From: "HyebeenLee(Emma)" Date: Fri, 23 May 2025 17:19:12 +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=20=EC=97=A0=EB=A7=88=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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index e9301f7..f56df4d 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -14,5 +14,5 @@ let learnerViews: [any LearnerView] = [ FridayView(), ElenaView(), JudyJView(), - EmmaView() + EmmaView() // 엠마 추가 ]