신규 콘텐츠 메인

- NavigationView 추가
This commit is contained in:
Yu Sung 2025-02-22 07:09:02 +09:00
parent 7c7d74b69c
commit fac5fe9a84
1 changed files with 78 additions and 76 deletions

View File

@ -41,8 +41,8 @@ struct ContentMainViewV2: View {
} }
var body: some View { var body: some View {
NavigationView {
ZStack { ZStack {
Color.black.ignoresSafeArea() Color.black.ignoresSafeArea()
VStack(spacing: 0) { VStack(spacing: 0) {
@ -129,6 +129,8 @@ struct ContentMainViewV2: View {
} }
} }
} }
.navigationBarHidden(true)
}
} }
} }