콘텐츠 업로드 크리에이터

- LazyHStack -> HStack으로 변경하여 과도한 간격 제거
This commit is contained in:
Yu Sung 2024-01-02 19:47:55 +09:00
parent 60457d987e
commit 5fcf4c03c0
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ struct ContentMainNewContentCreatorView: View {
ZStack {
if !viewModel.newContentUploadCreatorList.isEmpty {
ScrollView(.horizontal, showsIndicators: false) {
LazyHStack(spacing: 21.3) {
HStack(spacing: 21.3) {
ForEach(0..<viewModel.newContentUploadCreatorList.count, id: \.self) { index in
let item = viewModel.newContentUploadCreatorList[index]
ContentMainNewContentCreatorItemView(item: item)