시리즈 콘텐츠 전체보기
- VStack -> LazyVStack 변경하여 스크롤 로딩이 정상적으로 실행되도록 수정
This commit is contained in:
@@ -52,7 +52,7 @@ struct SeriesContentAllView: View {
|
|||||||
.background(Color.gray16)
|
.background(Color.gray16)
|
||||||
|
|
||||||
ScrollView(.vertical, showsIndicators: false) {
|
ScrollView(.vertical, showsIndicators: false) {
|
||||||
VStack(spacing: 12) {
|
LazyVStack(spacing: 12) {
|
||||||
ForEach(0..<viewModel.seriesContentList.count, id: \.self) { index in
|
ForEach(0..<viewModel.seriesContentList.count, id: \.self) { index in
|
||||||
let item = viewModel.seriesContentList[index]
|
let item = viewModel.seriesContentList[index]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user