From 232449b2a20549a04310ec8a99f3fa6353410441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=84=EA=B0=80=EC=9D=80?= <128891914+im-siu@users.noreply.github.com> Date: Tue, 26 May 2026 17:13:44 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20=EC=8B=9C=EC=9A=B0=20=EB=B7=B0=20?= =?UTF-8?q?=EC=A0=9C=EC=9E=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/SiuView.swift | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/SiuView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/SiuView.swift b/GithubPractice/GithubPractice/View/LearnerViews/SiuView.swift new file mode 100644 index 0000000..19243b9 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/SiuView.swift @@ -0,0 +1,22 @@ +// +// SiuView.swift +// GithubPractice +// +// Created by Im gaeun on 5/26/26. +// + +import SwiftUI + +struct SiuView: LearnerView { + var name: String = "Siu" + + var team: String = "11" + + var body: some View { + Text("나는 시우다.") + } +} + +#Preview { + SiuView() +} From f67801bca098b3ddd891ef5f5fd6bf854a0e1111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=84=EA=B0=80=EC=9D=80?= <128891914+im-siu@users.noreply.github.com> Date: Tue, 26 May 2026 17:15:37 +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=EC=8B=9C=EC=9A=B0=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..b2044c0 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(), + SiuView() ]