From 2feadd603af5028c21a96b9d3d1557b213969bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9D=80=EC=A7=80?= Date: Tue, 26 May 2026 17:13:33 +0900 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20NeptuneView=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/NeptuneView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift b/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift new file mode 100644 index 0000000..b723a5c --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift @@ -0,0 +1,22 @@ +// +// NeptuneView.swift +// +// +// Created by 이은지 on 5/26/26. +// + +import SwiftUI + +struct NeptuneView: LearnerView { + var name: String = "Neptune" + + var team: String = "이어폰 줄 꼬임" + + var body: some View { + Text("이어폰 줄 푸는 중...") + } +} + +#Preview { + NeptuneView() +} From 91ffd0ca3f484c9caecb085a9843c2b9a5883384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9D=80=EC=A7=80?= Date: Tue, 26 May 2026 17:16:47 +0900 Subject: [PATCH 2/3] =?UTF-8?q?[Feat]=20Neptune=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/NeptuneView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift b/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift new file mode 100644 index 0000000..b723a5c --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/NeptuneView.swift @@ -0,0 +1,22 @@ +// +// NeptuneView.swift +// +// +// Created by 이은지 on 5/26/26. +// + +import SwiftUI + +struct NeptuneView: LearnerView { + var name: String = "Neptune" + + var team: String = "이어폰 줄 꼬임" + + var body: some View { + Text("이어폰 줄 푸는 중...") + } +} + +#Preview { + NeptuneView() +} From f3e8b66b13812ae462aa8266cbc17fce835e7863 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9D=80=EC=A7=80?= Date: Tue, 26 May 2026 17:17:12 +0900 Subject: [PATCH 3/3] =?UTF-8?q?[Feat]=20=EB=A6=AC=EC=8A=A4=ED=8A=B8?= =?UTF-8?q?=EC=97=90=20Neptune=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..d8a6916 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(), + NeptuneView() ]