fix: 메인 홈

- 오디션 이미지 추가
- 오디션 리스트 페이지로 이동
This commit is contained in:
Yu Sung
2025-07-21 23:33:08 +09:00
parent f3898ac415
commit 0db3c2cc19
7 changed files with 57 additions and 6 deletions

View File

@@ -16,7 +16,21 @@ struct AuditionView: View {
var body: some View {
BaseView(isLoading: $viewModel.isLoading) {
VStack(spacing: 0) {
HomeNavigationBar(title: "오디션") {
HStack(spacing: 0) {
Button {
AppState.shared.back()
} label: {
Image("ic_back")
.resizable()
.frame(width: 20, height: 20)
Text("오디션")
.font(.custom(Font.bold.rawValue, size: 18.3))
.foregroundColor(Color(hex: "eeeeee"))
}
Spacer()
if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
Image(isAuditionNotification ? "btn_audition_notification_selected" : "btn_audition_notification_normal")
.onTapGesture {
@@ -24,6 +38,9 @@ struct AuditionView: View {
}
}
}
.padding(.horizontal, 13.3)
.frame(height: 50)
.background(Color.black)
HStack(spacing: 0) {
Text("보이스온 오디션 이용방법")