From 830f13d4491c0500e5c47f2fa018cab4b09b28cb Mon Sep 17 00:00:00 2001 From: zuuukkiim Date: Tue, 26 May 2026 17:13:34 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EB=9C=A8=EC=97=89=EA=B0=9C=EC=98=88?= =?UTF-8?q?=EC=9A=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 무뼈궁무닷빠 --- .../View/LearnerViews/ZukiView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/ZukiView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/ZukiView.swift b/GithubPractice/GithubPractice/View/LearnerViews/ZukiView.swift new file mode 100644 index 0000000..762a82b --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/ZukiView.swift @@ -0,0 +1,22 @@ +// +// ZukiView.swift +// GithubPractice +// +// Created by zuki on 5/26/26. +// + +import SwiftUI + +struct ZukiView: LearnerView { + var name: String = "Zuki" + + var team: String = "Team15" + + var body: some View { + Text("안녕하세요 떵~개!예요. 오늘 멉빵은... 무뼈궁무닷빠! 마싯게먹겓듭니다! 조아요와 구동 한 번씩만 부탓드리께요!") + } +} + +#Preview { + ZukiView() +} From 1251ce3cadf2858980ac1696fc1d79c33dfa46ca Mon Sep 17 00:00:00 2001 From: zuuukkiim Date: Tue, 26 May 2026 17:15:29 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=9C=A8=EC=97=89=EA=B0=9C=ED=88=AC!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ver. 2 --- 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 fc3f6d4..820084a 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -11,5 +11,6 @@ import SwiftUI let learnerViews: [any LearnerView] = [ LumiView(), JudyView(), - IrisView() + IrisView(), + ZukiView() ]