From 431a5244b64d154d4e3e2543fe6ad3859856cad9 Mon Sep 17 00:00:00 2001 From: Evan-the-Hui Date: Fri, 23 May 2025 12:15:46 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20Evan=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 --- .../View/LearnerViews/EvanView.swift | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/EvanView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/EvanView.swift b/GithubPractice/GithubPractice/View/LearnerViews/EvanView.swift new file mode 100644 index 0000000..069a0ab --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/EvanView.swift @@ -0,0 +1,26 @@ +// +// LumiView.swift +// GithubPractice +// +// Created by 정영진 on 5/22/25. +// + +import SwiftUI + +struct EvanView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Evan" + + var team: String = "I can speak" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + EvanView() +} From 90cdf57229bf7e181e68ca8c07c5d68b1bd22013 Mon Sep 17 00:00:00 2001 From: Evan-the-Hui Date: Fri, 23 May 2025 12:19:00 +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=20Evan=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 58e7960..07ae0f2 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(), + EvanView() ]