오디션, 오디션 상세
- 오디션 리스트, 오디션 캐릭터 리스트 아이템 사이 간격 16.7 -> 25로 변경
This commit is contained in:
parent
92608b5449
commit
63cfcecad5
|
@ -17,12 +17,12 @@ struct AuditionView: View {
|
||||||
HomeNavigationBar(title: "오디션") {}
|
HomeNavigationBar(title: "오디션") {}
|
||||||
|
|
||||||
ScrollView(.vertical, showsIndicators: false) {
|
ScrollView(.vertical, showsIndicators: false) {
|
||||||
LazyVStack(alignment: .leading, spacing: 16.7) {
|
LazyVStack(alignment: .leading, spacing: 25) {
|
||||||
ForEach(0..<viewModel.auditionList.count, id: \.self) {
|
ForEach(0..<viewModel.auditionList.count, id: \.self) {
|
||||||
let item = viewModel.auditionList[$0]
|
let item = viewModel.auditionList[$0]
|
||||||
|
|
||||||
if $0 == 0 && !item.isOff {
|
if $0 == 0 && !item.isOff {
|
||||||
VStack(alignment: .leading, spacing: 16.7) {
|
VStack(alignment: .leading, spacing: 25) {
|
||||||
HStack(spacing: 0) {
|
HStack(spacing: 0) {
|
||||||
Text("오디션")
|
Text("오디션")
|
||||||
.font(.custom(Font.bold.rawValue, size: 18.3))
|
.font(.custom(Font.bold.rawValue, size: 18.3))
|
||||||
|
@ -54,7 +54,7 @@ struct AuditionView: View {
|
||||||
Color.gray23
|
Color.gray23
|
||||||
.frame(maxWidth: .infinity)
|
.frame(maxWidth: .infinity)
|
||||||
.frame(height: 6.7)
|
.frame(height: 6.7)
|
||||||
.padding(.top, 13.3)
|
.padding(.top, 5)
|
||||||
|
|
||||||
HStack(spacing: 0) {
|
HStack(spacing: 0) {
|
||||||
Text("오디션")
|
Text("오디션")
|
||||||
|
@ -74,7 +74,7 @@ struct AuditionView: View {
|
||||||
.padding(.top, 30)
|
.padding(.top, 30)
|
||||||
|
|
||||||
AuditionItemView(item: item)
|
AuditionItemView(item: item)
|
||||||
.padding(.top, 16.7)
|
.padding(.top, 25)
|
||||||
.onTapGesture {
|
.onTapGesture {
|
||||||
if !item.isOff {
|
if !item.isOff {
|
||||||
AppState.shared
|
AppState.shared
|
||||||
|
|
|
@ -41,9 +41,9 @@ struct AuditionDetailView: View {
|
||||||
Text("오디션 캐릭터")
|
Text("오디션 캐릭터")
|
||||||
.font(.custom(Font.bold.rawValue, size: 14.7))
|
.font(.custom(Font.bold.rawValue, size: 14.7))
|
||||||
.foregroundColor(Color.grayee)
|
.foregroundColor(Color.grayee)
|
||||||
.padding(.vertical, 15)
|
.padding(.top, 15)
|
||||||
|
|
||||||
LazyVStack(spacing: 15) {
|
LazyVStack(spacing: 25) {
|
||||||
ForEach(0..<response.roleList.count, id: \.self) {
|
ForEach(0..<response.roleList.count, id: \.self) {
|
||||||
let role = response.roleList[$0]
|
let role = response.roleList[$0]
|
||||||
|
|
||||||
|
@ -56,6 +56,7 @@ struct AuditionDetailView: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.padding(.top, 20)
|
||||||
}
|
}
|
||||||
.padding(.horizontal, 13.3)
|
.padding(.horizontal, 13.3)
|
||||||
.padding(.vertical, 8)
|
.padding(.vertical, 8)
|
||||||
|
|
Loading…
Reference in New Issue