From d0bfe0f7d3a6a068001243dfa0ac77ab96d4d0db Mon Sep 17 00:00:00 2001 From: naylid Date: Fri, 23 May 2025 17:16:18 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[FEAT]=20=EB=84=A4=EC=9D=B4=EC=85=98?= =?UTF-8?q?=EB=B7=B0=20=EC=A0=9C=EC=9E=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/NaylView 2.swift | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/NaylView 2.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/NaylView 2.swift b/GithubPractice/GithubPractice/View/LearnerViews/NaylView 2.swift new file mode 100644 index 0000000..e63d003 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/NaylView 2.swift @@ -0,0 +1,26 @@ +// +// LumiView.swift +// GithubPractice +// +// Created by 정영진 on 5/22/25. +// + +import SwiftUI + +struct NaylView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "nayl" + + var team: String = "팀9" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + LumiView() +} From d992d39e199305a995bc390652c72e19ea8e310d Mon Sep 17 00:00:00 2001 From: naylid Date: Fri, 23 May 2025 17:18:34 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Feat]=20=EB=84=A4=EC=9D=BC=20=EB=B7=B0=20?= =?UTF-8?q?=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..ade11ea 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(), + NaylView() ]