feat(latest-audio-content-all): 테마 UI 변경, 아이템 2단으로 변경

This commit is contained in:
Yu Sung
2025-11-20 15:06:25 +09:00
parent 68fd9ee3ad
commit 4d5ac61dbe
9 changed files with 129 additions and 67 deletions

View File

@@ -10,10 +10,9 @@ import Kingfisher
struct ContentNewAllItemView: View {
let width: CGFloat
let item: GetAudioContentMainItem
@State var width: CGFloat = 0
var body: some View {
NavigationLink {
ContentDetailView(contentId: item.contentId)
@@ -104,9 +103,6 @@ struct ContentNewAllItemView: View {
.padding(.bottom, 10)
}
.frame(width: width)
.onAppear {
width = (screenSize().width - 42) / 3
}
}
}
}