Voice Chat UI improvements

This commit is contained in:
Ilya Laktyushin
2020-11-27 00:37:16 +04:00
parent 21fcb34d66
commit 30d6182a85
5 changed files with 237 additions and 16 deletions

View File

@@ -196,13 +196,16 @@ public struct PresentationGroupCallSummaryState: Equatable {
public struct PresentationGroupCallMemberState: Equatable {
public var ssrc: UInt32
public var muteState: GroupCallParticipantsContext.Participant.MuteState?
public var speaking: Bool
public init(
ssrc: UInt32,
muteState: GroupCallParticipantsContext.Participant.MuteState?
muteState: GroupCallParticipantsContext.Participant.MuteState?,
speaking: Bool
) {
self.ssrc = ssrc
self.muteState = muteState
self.speaking = speaking
}
}