From 982c492894786a662118f09f6ef1c3f91e02cff9 Mon Sep 17 00:00:00 2001 From: neve1n Date: Tue, 26 May 2026 17:14:07 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20{Maple}=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/MapleView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/MapleView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/MapleView.swift b/GithubPractice/GithubPractice/View/LearnerViews/MapleView.swift new file mode 100644 index 0000000..0248786 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/MapleView.swift @@ -0,0 +1,22 @@ +// +// MapleView.swift +// GithubPractice +// +// Created by 최서진 on 5/26/26. +// + +import SwiftUI + +struct MapleView: LearnerView { + var name: String = "Maple" + + var team: String = "이어폰줄꼬임" + + var body: some View { + Text("안녕하세요") + } +} + +#Preview { + MapleView() +} From c3da33a16378eae76e591bf43c4727565417f584 Mon Sep 17 00:00:00 2001 From: neve1n Date: Tue, 26 May 2026 17:16:38 +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=20{Maple}=20=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 fc3f6d4..daac535 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(), + MapleView() ]