feat(live-room): 하트를 길게(2초)간 누르면 표시 되는 왕하트(100캔) 추가, 애니메이션 제외

This commit is contained in:
Yu Sung
2025-11-05 12:20:01 +09:00
parent d8c27ae225
commit 0a59c6f575
6 changed files with 46 additions and 11 deletions

View File

@@ -253,7 +253,8 @@ struct LiveRoomViewV2: View {
if liveRoomInfo.creatorId != UserDefaults.int(forKey: .userId) {
LiveRoomRightBottomButton(
imageName: "ic_heart_pink",
onClick: { viewModel.likeHeart() }
onClick: { viewModel.likeHeart() },
onLongPress: { viewModel.likeHeart(messageType: .BIG_HEART_DONATION, heartCount: 100) }
)
}
}