From 5b499d45367b1b3b13510770af9030bf02e9c135 Mon Sep 17 00:00:00 2001 From: Jeongin-c Date: Fri, 23 May 2025 17:16:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20{Erin}=20=EB=B7=B0=20=EC=A0=9C?= =?UTF-8?q?=EC=9E=91=1C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/ErinView.swift | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/ErinView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/ErinView.swift b/GithubPractice/GithubPractice/View/LearnerViews/ErinView.swift new file mode 100644 index 0000000..323a213 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/ErinView.swift @@ -0,0 +1,26 @@ +// +// ErinView.swift +// GithubPractice +// +// Created by Cha Jungin on 5/23/25. +// + +import SwiftUI + +struct ErinView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Erin " + + var team: String = "팀5" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + ErinView() +} From 9cf794a64f87c5d92da069d7cf57091e0fd47644 Mon Sep 17 00:00:00 2001 From: Jeongin-c Date: Fri, 23 May 2025 17:18:33 +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{Erin}=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 9f43bbc..3896710 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(), + ErinView() ]