Ensure landscape operation is only enabled on foldable displays.

This commit is contained in:
Alex Hart
2021-08-02 09:55:58 -03:00
committed by Greyson Parrelli
parent 922d0d7203
commit 52978b1b42
5 changed files with 41 additions and 37 deletions

View File

@@ -0,0 +1,9 @@
package org.thoughtcrime.securesms.webrtc
import org.thoughtcrime.securesms.components.webrtc.CallParticipantsState
data class CallParticipantsViewState(
val callParticipantsState: CallParticipantsState,
val isPortrait: Boolean,
val isLandscapeEnabled: Boolean
)