feat: KFImage를 사용하는 곳에 .cancelOnDisappear(true) 옵션 추가

This commit is contained in:
Yu Sung
2025-10-23 15:09:50 +09:00
parent 425a767927
commit 9568cb7ecd
14 changed files with 17 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ struct ContentDetailPreviousNextContentButtonView: View {
if let previousContent = previousContent {
HStack(alignment: .top, spacing: 5.3) {
KFImage(URL(string: previousContent.coverUrl))
.cancelOnDisappear(true)
.resizable()
.frame(width: 33.3, height: 33.3)
.cornerRadius(5.3)
@@ -58,6 +59,7 @@ struct ContentDetailPreviousNextContentButtonView: View {
if let nextContent = nextContent {
HStack(alignment: .top, spacing: 5.3) {
KFImage(URL(string: nextContent.coverUrl))
.cancelOnDisappear(true)
.resizable()
.frame(width: 33.3, height: 33.3)
.cornerRadius(5.3)