시리즈 콘텐츠 전체보기

- VStack -> LazyVStack 변경하여 스크롤 로딩이 정상적으로 실행되도록 수정
This commit is contained in:
Yu Sung 2024-10-24 22:04:57 +09:00
parent 17b4516b87
commit b4f5dc54d7
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ struct SeriesContentAllView: View {
.background(Color.gray16)
ScrollView(.vertical, showsIndicators: false) {
VStack(spacing: 12) {
LazyVStack(spacing: 12) {
ForEach(0..<viewModel.seriesContentList.count, id: \.self) { index in
let item = viewModel.seriesContentList[index]