feat(chat-room-bg): 배경 이미지 변경 기능 추가

This commit is contained in:
Yu Sung
2025-09-04 16:44:57 +09:00
parent a025e455a0
commit ee67e1eab7
10 changed files with 277 additions and 18 deletions

View File

@@ -56,6 +56,7 @@ struct ChatSettingsView: View {
.frame(maxWidth: .infinity)
.frame(height: 1)
}
.contentShape(Rectangle())
.onTapGesture { onTapChangeBg() }
HStack(spacing: 0) {
@@ -100,6 +101,7 @@ struct ChatSettingsView: View {
}
.padding(.horizontal, 24)
.padding(.vertical, 12)
.contentShape(Rectangle())
.onTapGesture { onTapResetChatRoom() }
}
}