시리즈 전체보기

- 세로 아이템 간격 33.3으로 수정
This commit is contained in:
Yu Sung 2024-04-30 23:48:37 +09:00
parent 9f3eb8a995
commit b55d2c22f8
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ struct SeriesListAllView: View {
DetailNavigationBar(title: "시리즈 전체보기")
ScrollView(.vertical, showsIndicators: false) {
LazyVGrid(columns: columns, spacing: 16.7) {
LazyVGrid(columns: columns, spacing: 33.3) {
ForEach(0..<viewModel.seriesList.count, id: \.self) { index in
let item = viewModel.seriesList[index]
SeriesListItemView(itemWidth: (screenSize().width - 40) / 3, item: item)