From 811dba538e909ad0ddba8ca537ce55b14d6e77c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EA=B3=A0=EC=9A=B4?= Date: Tue, 26 May 2026 17:14:42 +0900 Subject: [PATCH 1/2] Create GonnView.swift --- .../View/LearnerViews/GonnView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/GonnView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/GonnView.swift b/GithubPractice/GithubPractice/View/LearnerViews/GonnView.swift new file mode 100644 index 0000000..089bca8 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/GonnView.swift @@ -0,0 +1,22 @@ +// +// GonnView.swift +// GithubPractice +// +// Created by 박고운 on 5/26/26. +// + +import SwiftUI + +struct GonnView: LearnerView { + var name: String = "Gonn" + + var team: String = "06" + + var body: some View { + Text("나는 곤이다.") + } +} + +#Preview { + GonnView() +} From 4a853689c236b7fbdec711a45aa53f59bfa4be1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EA=B3=A0=EC=9A=B4?= Date: Tue, 26 May 2026 17:16:02 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=B0=B0=EC=97=B4=EC=97=90=20Gonnview?= =?UTF-8?q?=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..281dede 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(), + GonnView() ]