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/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() ] 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() +}