시그니처 후원

- 시그니처 별로 설정된 시간 만큼 GIF가 재생되도록 기능 추가
This commit is contained in:
Yu Sung
2024-05-01 22:29:37 +09:00
parent b55d2c22f8
commit ee34c9a0f8
5 changed files with 84 additions and 17 deletions

View File

@@ -272,6 +272,21 @@ struct LiveRoomViewV2: View {
Spacer()
}
}
if let signature = viewModel.signature {
VStack {
Spacer()
AnimatedImage(url: URL(string: signature.imageUrl))
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: screenSize().width - 64)
Spacer()
Spacer()
Spacer()
}
}
}
}