ControlActionsParams

data class ControlActionsParams(val call: Call, val modifier: Modifier = Modifier, val onCallAction: (CallAction) -> Unit? = null, val actions: List<@Composable () -> Unit>? = null)

Parameters for VideoComponentFactory.ControlActions.

Parameters

call

The call that contains all the participants state and tracks.

modifier

Modifier for styling.

onCallAction

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

actions

A list of composable call actions arranged in the layout. When null, the default call control actions are used.

Constructors

Link copied to clipboard
constructor(call: Call, modifier: Modifier = Modifier, onCallAction: (CallAction) -> Unit? = null, actions: List<@Composable () -> Unit>? = null)

Properties

Link copied to clipboard
val actions: List<@Composable () -> Unit>?
Link copied to clipboard
val call: Call
Link copied to clipboard
Link copied to clipboard