시리즈 콘텐츠 전체보기
- VStack -> LazyVStack 변경하여 스크롤 로딩이 정상적으로 실행되도록 수정
This commit is contained in:
parent
17b4516b87
commit
b4f5dc54d7
|
@ -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]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue