콘텐츠 그리드 리스트

- 아이템 간격 32로 수정
This commit is contained in:
Yu Sung
2024-02-15 02:31:02 +09:00
parent a07e87b9c8
commit d16c56fef8
4 changed files with 6 additions and 8 deletions

View File

@@ -59,7 +59,7 @@ struct ContentNewAllView: View {
.padding(.horizontal, 20)
ScrollView(.vertical, showsIndicators: false) {
LazyVGrid(columns: columns, spacing: 16.7) {
LazyVGrid(columns: columns, spacing: 32) {
ForEach(0..<viewModel.newContentList.count, id: \.self) { index in
ContentNewAllItemView(item: viewModel.newContentList[index])
.onAppear {