From b48e37cce13c76cc10e08b80eb8db53318edafc2 Mon Sep 17 00:00:00 2001 From: daayye Date: Tue, 26 May 2026 17:13:42 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=EB=8B=A4=EB=8B=88=20=EB=B7=B0=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/DaniView.swift | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift b/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift new file mode 100644 index 0000000..2d597a7 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift @@ -0,0 +1,23 @@ +// +// DaniView.swift +// GithubPractice +// +// Created by Daye Lee on 5/26/26. +// + +import SwiftUI + +struct DaniView: View { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Dani" + + var team: String = "14" + + var body: some View { + Text("나는 다니다.") + } +} + +#Preview { + DaniView() +} From db4befcf01e564a6c0556b6ea821c93b2f0cdd56 Mon Sep 17 00:00:00 2001 From: daayye Date: Tue, 26 May 2026 17:17:02 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=82=B4=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 ++- GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..ff99d6c 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(), + DaniView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift b/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift index 2d597a7..6ea6542 100644 --- a/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift +++ b/GithubPractice/GithubPractice/View/LearnerViews/DaniView.swift @@ -7,7 +7,7 @@ import SwiftUI -struct DaniView: View { +struct DaniView: LearnerView { // TODO: 1. 이름, 팀 수정하고 커밋하기 var name: String = "Dani"