From 2a39b0a4aa4ff2e9f9e090592c806fc93c9a2069 Mon Sep 17 00:00:00 2001 From: Yoonjin Lee Date: Tue, 26 May 2026 17:13:50 +0900 Subject: [PATCH 1/2] =?UTF-8?q?=ED=95=98=EC=9D=B4=20=EC=A0=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 젠뷰 만들엇음 ㅋ --- .../GithubPractice.xcodeproj/project.pbxproj | 2 ++ .../View/LearnerViews/ZenView.swift | 22 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/ZenView.swift diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index ef6aa66..dd17557 100644 --- a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj +++ b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj @@ -254,6 +254,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = 66Z7AD4Z5Q; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; @@ -283,6 +284,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = 66Z7AD4Z5Q; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; diff --git a/GithubPractice/GithubPractice/View/LearnerViews/ZenView.swift b/GithubPractice/GithubPractice/View/LearnerViews/ZenView.swift new file mode 100644 index 0000000..2950e18 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/ZenView.swift @@ -0,0 +1,22 @@ +// +// ZenView.swift +// GithubPractice +// +// Created by 이윤진 on 5/26/26. +// + +import SwiftUI + +struct ZenView: LearnerView { + var name: String = "Zen" + + var team: String = "13" + + var body: some View { + Text("안녕하세요 제니입니다") + } +} + +#Preview { + ZenView() +} From 28263737c5bb4713bcabb0c424695a2fb314c219 Mon Sep 17 00:00:00 2001 From: Yoonjin Lee Date: Tue, 26 May 2026 17:15:49 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=EB=91=90=20=EB=B2=88=EC=A7=B8=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= 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..cc93683 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(), + ZenView() ]