CallLobbyControlsContentParams

data class CallLobbyControlsContentParams(val call: Call, val isCameraEnabled: Boolean, val isMicrophoneEnabled: Boolean, val modifier: Modifier = Modifier, val onCallAction: (CallAction) -> Unit? = null)

Parameters for VideoComponentFactory.CallLobbyControlsContent.

Parameters

call

The call that contains all the participants state and tracks.

isCameraEnabled

Whether the camera is enabled or not.

isMicrophoneEnabled

Whether the microphone is enabled or not.

modifier

Modifier for styling.

onCallAction

Handler when the user triggers a Call Control Action. When null, the default call action handler is used.

Constructors

Link copied to clipboard
constructor(call: Call, isCameraEnabled: Boolean, isMicrophoneEnabled: Boolean, modifier: Modifier = Modifier, onCallAction: (CallAction) -> Unit? = null)

Properties

Link copied to clipboard
val call: Call
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard