CallAppBarParams

data class CallAppBarParams(val call: Call, val modifier: Modifier = Modifier, val onBackPressed: () -> Unit = {}, val onCallAction: (CallAction) -> Unit = {}, val title: String? = null)

Parameters for VideoComponentFactory.CallAppBar.

Parameters

call

The call that contains all the participants state and tracks.

modifier

Modifier for styling.

onBackPressed

Handler when the user taps on the back button.

onCallAction

Handler when the user triggers a Call Control Action.

title

The title shown in the app bar. When null, the default title is used.

Constructors

Link copied to clipboard
constructor(call: Call, modifier: Modifier = Modifier, onBackPressed: () -> Unit = {}, onCallAction: (CallAction) -> Unit = {}, title: String? = null)

Properties

Link copied to clipboard
val call: Call
Link copied to clipboard
Link copied to clipboard
val onBackPressed: () -> Unit
Link copied to clipboard
Link copied to clipboard