Compose Visibility
A VideoSinkVisibility for compose views.
To use, pass an onGloballyPositioned modifier your composable like so:
modifier = Modifier.onGloballyPositioned { videoSinkVisibility.onGloballyPositioned(it) }Content copied to clipboard
onDispose must be called when the associated composable is no longer used (i.e. with a DisposableEffect).
DisposableEffect(room) {
onDispose {
videoSinkVisibility.onDispose()
}
}Content copied to clipboard