diff --git a/GithubPractice/GithubPractice/Assets.xcassets/Image.imageset/Contents.json b/GithubPractice/GithubPractice/Assets.xcassets/Image.imageset/Contents.json new file mode 100644 index 0000000..f93dc01 --- /dev/null +++ b/GithubPractice/GithubPractice/Assets.xcassets/Image.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "제목 없음-1.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git "a/GithubPractice/GithubPractice/Assets.xcassets/Image.imageset/\354\240\234\353\252\251 \354\227\206\354\235\214-1.png" "b/GithubPractice/GithubPractice/Assets.xcassets/Image.imageset/\354\240\234\353\252\251 \354\227\206\354\235\214-1.png" new file mode 100644 index 0000000..9976698 Binary files /dev/null and "b/GithubPractice/GithubPractice/Assets.xcassets/Image.imageset/\354\240\234\353\252\251 \354\227\206\354\235\214-1.png" differ diff --git a/GithubPractice/GithubPractice/Model/LearnerViews.swift b/GithubPractice/GithubPractice/Model/LearnerViews.swift index fc3f6d4..4de0904 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(), + KyeozoView() ] diff --git a/GithubPractice/GithubPractice/View/LearnerViews/KyeozoView.swift b/GithubPractice/GithubPractice/View/LearnerViews/KyeozoView.swift new file mode 100644 index 0000000..d04a7c1 --- /dev/null +++ b/GithubPractice/GithubPractice/View/LearnerViews/KyeozoView.swift @@ -0,0 +1,22 @@ +// +// KyeozoView.swift +// GithubPractice +// +// Created by 조원경 on 5/26/26. +// + +import SwiftUI + +struct KyeozoView: LearnerView { + let name: String = "Kyeozo" + + let team: String = "십이지장이 아프기 전까지" + + var body: some View { + Text("안녕하세요 쿄조입니다") + } +} + +#Preview { + KyeozoView() +}