From 1316531053c4781775f9fe26cc1bb97cc94c0700 Mon Sep 17 00:00:00 2001 From: Yujin Jeon <166476876+romiwaves@users.noreply.github.com> Date: Fri, 23 May 2025 12:15:47 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20GabiView=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/GabiView.swift | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/GabiView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/GabiView.swift b/GithubPractice/GithubPractice/View/LearnerViews/GabiView.swift new file mode 100644 index 0000000..b3eaeb6 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/GabiView.swift @@ -0,0 +1,25 @@ +// +// GabiView.swift +// GithubPractice +// +// Created by gabi on 5/23/25. +// + +import SwiftUI + +struct GabiView: LearnerView { + var name: String = "gabi" + + var team: String = "Like Ginie" + + var body: some View { + Text("๋‚˜๋Š” \(name)๋‹ค์š”๐ŸŽธ") + .font(.largeTitle) + Text("\(team) ํ™”์ดํŒ…! ๊ณต์ฅฌ๋“ค์•„ ํž˜๋‚ด์ž") + .font(.subheadline) + } +} + +#Preview { + GabiView() +} From 3ee26ff27526e45fbc037ce9abb467f84dc67640 Mon Sep 17 00:00:00 2001 From: Yujin Jeon <166476876+romiwaves@users.noreply.github.com> Date: Fri, 23 May 2025 12:19:07 +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=20GabiView=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..4f51822 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(), + GabiView() ]