From 39710a042670075401efddf65d7581528b393f8a Mon Sep 17 00:00:00 2001 From: freedobby77 Date: Fri, 23 May 2025 12:16:07 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Feat]=20NyxView=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/LearnerViews/NyxView.swift | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 GithubPractice/GithubPractice/View/LearnerViews/NyxView.swift diff --git a/GithubPractice/GithubPractice/View/LearnerViews/NyxView.swift b/GithubPractice/GithubPractice/View/LearnerViews/NyxView.swift new file mode 100644 index 0000000..218f0f6 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/NyxView.swift @@ -0,0 +1,26 @@ +// +// Untitled.swift +// GithubPractice +// +// Created by SYJ on 5/23/25. +// + +import SwiftUI + +struct NyxView: LearnerView { + // TODO: 1. 이름, 팀 수정하고 커밋하기 + var name: String = "Nyx" + + var team: String = "아보카도팀" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + NyxView() +} From ee5b5d853be99e7f76ed012fd6ad16ac5a50a771 Mon Sep 17 00:00:00 2001 From: freedobby77 Date: Fri, 23 May 2025 12:20:48 +0900 Subject: [PATCH 2/2] [Feat] Nyx --- GithubPractice/GithubPractice.xcodeproj/project.pbxproj | 2 ++ GithubPractice/GithubPractice/Model/LearnerViews.swift | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index 8eb97da..4aca660 100644 --- a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj +++ b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj @@ -252,6 +252,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = 4AZGQY4U6F; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; @@ -280,6 +281,7 @@ CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_ASSET_PATHS = "\"GithubPractice/Preview Content\""; + DEVELOPMENT_TEAM = 4AZGQY4U6F; 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 58e7960..f11c3c2 100644 --- a/GithubPractice/GithubPractice/Model/LearnerViews.swift +++ b/GithubPractice/GithubPractice/Model/LearnerViews.swift @@ -10,5 +10,6 @@ import Foundation // TODO: 2. learnerViews에 자신의 View 추가하고 커밋! let learnerViews: [any LearnerView] = [ LumiView(), - FridayView() + FridayView(), + NyxView() ]