콘텐츠 메인 - 채널별 ***

- 아이템 사이 간격 조정
This commit is contained in:
Yu Sung 2025-02-25 14:48:52 +09:00
parent 41f692a402
commit 898ea17a2e
1 changed files with 5 additions and 3 deletions

View File

@ -17,7 +17,10 @@ struct ContentByChannelView: View {
@State private var selectedCreatorId = 0
let columns = [GridItem(.flexible()), GridItem(.flexible())]
let columns = [
GridItem(.flexible(), spacing: 13.3),
GridItem(.flexible(), spacing: 13.3)
]
var body: some View {
VStack(alignment: .leading, spacing: 20) {
@ -113,7 +116,6 @@ struct ContentByChannelView: View {
.setAppStep(step: .creatorDetail(userId: content.creatorId))
}
}
.padding(.horizontal, 13.3)
.onTapGesture {
AppState
.shared
@ -121,7 +123,7 @@ struct ContentByChannelView: View {
}
}
}
.padding(.horizontal, 13.3)
}
.onAppear {
if !self.creatorList.isEmpty {