From 9149dccd4cdf995b8c46dcbe3e693ea783efd4b0 Mon Sep 17 00:00:00 2001 From: Libby Date: Fri, 23 May 2025 17:16:13 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[feat]=20=EB=A6=AC=EB=B9=84=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 --- .../View/LearnerViews/LibbyView.swift | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/LibbyView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/LibbyView.swift b/GithubPractice/GithubPractice/View/LearnerViews/LibbyView.swift new file mode 100644 index 0000000..35d4888 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/LibbyView.swift @@ -0,0 +1,25 @@ +// +// ElenaView.swift +// GithubPractice +// +// Created by 김지윤 on 5/23/25. +// + +import SwiftUI + +struct LibbyView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Libby" + + var team: String = "222" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} +#Preview { + LibbyView() +} From 61c4552ce4b1795d3c9d06bb86daafed9211cc37 Mon Sep 17 00:00:00 2001 From: Libby Date: Fri, 23 May 2025 17:18:20 +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=EB=A6=AC=EB=B9=84=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..2acda96 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(), + LibbyView() ]