오디션 이용방법 링크 추가

This commit is contained in:
Yu Sung 2025-01-20 21:44:01 +09:00
parent 8228f4717a
commit e09f932550
1 changed files with 23 additions and 0 deletions

View File

@ -22,6 +22,29 @@ struct AuditionView: View {
}
}
HStack(spacing: 0) {
Text("보이스온 오디션 이용방법")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(.white)
Spacer()
Text("자세히>")
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(.white)
}
.padding(.horizontal, 13.3)
.padding(.vertical, 10)
.background(Color.gray22)
.cornerRadius(5.3)
.padding(.horizontal, 13.3)
.padding(.bottom, 15)
.onTapGesture {
UIApplication.shared.open(
URL(string: "https://bit.ly/40EYuJc")!
)
}
ScrollView(.vertical, showsIndicators: false) {
LazyVStack(alignment: .leading, spacing: 25) {
ForEach(0..<viewModel.auditionList.count, id: \.self) {