From 74bc0f08f3d0a085eb342477f591064acad3bbc0 Mon Sep 17 00:00:00 2001 From: Yeony Date: Fri, 23 May 2025 12:15:55 +0900 Subject: [PATCH 1/3] =?UTF-8?q?[Feat]=20Yeony=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 --- .../View/LearnerViews/YeonyView.swift | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift b/GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift new file mode 100644 index 0000000..ddc16d1 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift @@ -0,0 +1,26 @@ +// +// LumiView.swift +// GithubPractice +// +// Created by 정영진 on 5/22/25. +// + +import SwiftUI + +struct YeonyView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Yeony" + + var team: String = "러너팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + LumiView() +} From b442d6b73e5bde48b2e687f3bf395c362ac68a64 Mon Sep 17 00:00:00 2001 From: Yeony Date: Fri, 23 May 2025 12:20:11 +0900 Subject: [PATCH 2/3] =?UTF-8?q?[Feat]=20=EB=A6=AC=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EC=97=90=20=EC=97=AC=EB=8B=88=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 | 1 + 1 file changed, 1 insertion(+) diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index 58e7960..0f2f72a 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,4 +11,5 @@ import Foundation let learnerViews: [any LearnerView] = [ LumiView(), FridayView() + YeonyView() ] From 7e6c1943afe69ac2a200f5984eaa35eddae21dce Mon Sep 17 00:00:00 2001 From: Yeony Date: Fri, 23 May 2025 12:24:01 +0900 Subject: [PATCH 3/3] =?UTF-8?q?[Feat]=20=EC=97=AC=EB=8B=88=EB=B7=B0=20?= =?UTF-8?q?=EB=B0=B0=EC=97=B4=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GithubPractice/GithubPractice/Model/LearnerViews.swift | 2 +- GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index 0f2f72a..0c702c9 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -10,6 +10,6 @@ import Foundation // TODO: 2. learnerViews에 자신의 View 추가하고 커밋! let learnerViews: [any LearnerView] = [ LumiView(), - FridayView() + FridayView(), YeonyView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift b/GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift index ddc16d1..25a112d 100644 --- a/GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift +++ b/GithubPractice/GithubPractice/View/LearnerViews/YeonyView.swift @@ -22,5 +22,5 @@ struct YeonyView: LearnerView { } #Preview { - LumiView() + YeonyView() }