라이브 - 방장을 제외한 모든 유저에게 참여자 목록 버튼이 보이지 않도록 수정

This commit is contained in:
Yu Sung 2023-10-31 16:32:56 +09:00
parent 6583e07f45
commit 0079f248ee
1 changed files with 22 additions and 20 deletions

View File

@ -784,6 +784,7 @@ struct LiveRoomView: View {
viewModel.isShowDonationRankingPopup = true
}
if liveRoomInfo.creatorId == UserDefaults.int(forKey: .userId) {
HStack(spacing: 0) {
Text("참여자")
.font(.custom(Font.medium.rawValue, size: 12))
@ -806,6 +807,7 @@ struct LiveRoomView: View {
viewModel.isShowProfileList = true
}
}
}
.padding(.top, 13.3)
.padding(.horizontal, 13.3)
}