From e048655248fe3b12881b265f85c1d3894ecf7d18 Mon Sep 17 00:00:00 2001 From: SingleBungIe <50876959+SingleBungIe@users.noreply.github.com> Date: Fri, 23 May 2025 12:17:28 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20HappyJay=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/Model/LearnerViews.swift | 3 ++- .../View/LearnerViews/HappyJay.swift | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index 58e7960..58605d5 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(), + HappyJayView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift b/GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift new file mode 100644 index 0000000..8ee642c --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift @@ -0,0 +1,26 @@ +// +// LumiView.swift +// GithubPractice +// +// Created by 정영진 on 5/22/25. +// + +import SwiftUI + +struct HappyJayView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "HappyJay" + + var team: String = "멘토팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + LumiView() +} From b1d03e591d62ae9c0f38dc63c63e89553150b5b1 Mon Sep 17 00:00:00 2001 From: SingleBungIe <50876959+SingleBungIe@users.noreply.github.com> Date: Fri, 23 May 2025 12:17:59 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Feat]=20HappyJay=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/GithubPractice/View/LearnerViews/HappyJay.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift b/GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift index 8ee642c..5d0575b 100644 --- a/GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift +++ b/GithubPractice/GithubPractice/View/LearnerViews/HappyJay.swift @@ -24,3 +24,4 @@ struct HappyJayView: LearnerView { #Preview { LumiView() } +//ㄹㄹ