diff --git a/GithubPractice/GithubPractice.xcodeproj/project.pbxproj b/GithubPractice/GithubPractice.xcodeproj/project.pbxproj index ef6aa66..81ccfec 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 = NKD752LBMV; 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 = NKD752LBMV; 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..c5e2aa3 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(), + HamoView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/HamoView.swift b/GithubPractice/GithubPractice/View/LearnerViews/HamoView.swift new file mode 100644 index 0000000..6045c4e --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/HamoView.swift @@ -0,0 +1,25 @@ +// +// HamoView.swift +// GithubPractice +// +// Created by Seoyeong_Kim on 5/26/26. +// + +import SwiftUI + +struct HamoView: LearnerView { + let name: String = "하모" + + let team: String = "오도독" + + var body: some View { + Text("저의 이름은 \(name)입니다.") + .font(.largeTitle) + Text("저의 팀은 \(team) 입니다.") + .font(.subheadline) + } +} + +#Preview { + HamoView() +}