Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion GithubPractice/GithubPractice/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ struct ContentView: View {
}

#Preview {
ContentView()
NavigationStack {
ContentView()
}
}
3 changes: 2 additions & 1 deletion GithubPractice/GithubPractice/Model/LearnerViews.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ import SwiftUI
let learnerViews: [any LearnerView] = [
LumiView(),
JudyView(),
IrisView()
IrisView(),
nooyView(),
]
30 changes: 30 additions & 0 deletions GithubPractice/GithubPractice/View/LearnerViews/nooyView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
//
// nooyView.swift
// GithubPractice
//
// Created by nooy on 5/26/26.
//

import SwiftUI

struct nooyView: LearnerView {
// TODO: 1. 이름, 팀 수정하고 커밋하기
var name: String = "nooy"

var team: String = "🎶Team10 이어폰줄꼬임🎶"

var body: some View {
Text("저\n의\n이름은\n\(name)💤💤 입니\n다.")
.font(.largeTitle)
Text("저의 팀은 \(team) 이에염.")
.font(.subheadline)
.bold()
.padding()
.background(Color.orange)
}

}

#Preview {
nooyView()
}