Transition full screen call UX to terminal state when call handled by linked device.

This commit is contained in:
Cody Henthorne
2024-04-04 11:53:29 -04:00
committed by Greyson Parrelli
parent 16588c401e
commit dd28523b05
8 changed files with 27 additions and 17 deletions

View File

@@ -51,6 +51,9 @@ class WebRtcViewModel(state: WebRtcServiceState) {
val inOngoingCall: Boolean
get() = this == CALL_INCOMING || this == CALL_OUTGOING || this == CALL_CONNECTED || this == CALL_RINGING || this == CALL_RECONNECTING
val isIncomingOrHandledElsewhere
get() = this == CALL_INCOMING || this == CALL_ACCEPTED_ELSEWHERE || this == CALL_DECLINED_ELSEWHERE || this == CALL_ONGOING_ELSEWHERE
}
enum class GroupCallState {