ParticipantsRegularGrid

fun ParticipantsRegularGrid(modifier: Modifier = Modifier, call: Call, style: VideoRendererStyle = RegularVideoRendererStyle(), videoRenderer: @Composable (modifier: Modifier, call: Call, participant: ParticipantState, style: VideoRendererStyle) -> Unit = { videoModifier, videoCall, videoParticipant, videoStyle -> ParticipantVideo( modifier = videoModifier, call = videoCall, participant = videoParticipant, style = videoStyle, ) }, floatingVideoRenderer: @Composable BoxScope.(call: Call, IntSize) -> Unit? = null)

Renders the participants are joining in a call when there are no screen sharing sessions, based on the orientation.

Parameters

call

The call that contains all the participants state and tracks.

modifier

Modifier for styling.

style

Defined properties for styling a single video call track.

videoRenderer

A single video renderer renders each individual participant.

floatingVideoRenderer

A floating video renderer renders an individual participant.