라이브
- 스피커 음소거 버튼 우측 상단으로 이동
This commit is contained in:
		| @@ -166,6 +166,18 @@ struct LiveRoomViewV2: View { | ||||
|                                 .padding(.top, 16) | ||||
|                                  | ||||
|                                 VStack(alignment: .trailing, spacing: 0) { | ||||
|                                     Image(viewModel.isSpeakerMute ? "ic_speaker_off" : "ic_speaker_on") | ||||
|                                         .resizable() | ||||
|                                         .frame(width: 26.7, height: 26.7) | ||||
|                                         .padding(11) | ||||
|                                         .background(Color(hex: "525252").opacity(0.6)) | ||||
|                                         .cornerRadius(10) | ||||
|                                         .onTapGesture { | ||||
|                                             viewModel.toggleSpeakerMute() | ||||
|                                         } | ||||
|                                         .padding(.top, 26.7) | ||||
|                                         .padding(.trailing, 13.3) | ||||
|                                      | ||||
|                                     Spacer() | ||||
|                                      | ||||
|                                     VStack(spacing: 13.3) { | ||||
| @@ -203,16 +215,6 @@ struct LiveRoomViewV2: View { | ||||
|                                                 } | ||||
|                                         } | ||||
|                                          | ||||
|                                         Image(viewModel.isSpeakerMute ? "ic_speaker_off" : "ic_speaker_on") | ||||
|                                             .resizable() | ||||
|                                             .frame(width: 26.7, height: 26.7) | ||||
|                                             .padding(11) | ||||
|                                             .background(Color(hex: "525252").opacity(0.6)) | ||||
|                                             .cornerRadius(10) | ||||
|                                             .onTapGesture { | ||||
|                                                 viewModel.toggleSpeakerMute() | ||||
|                                             } | ||||
|                                          | ||||
|                                         if liveRoomInfo.creatorId == UserDefaults.int(forKey: .userId) && | ||||
|                                             UserDefaults.string(forKey: .role) == MemberRole.CREATOR.rawValue { | ||||
|                                             Image("ic_donation_message_list") | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Yu Sung
					Yu Sung