Package-level declarations

Types

Link copied to clipboard
data class BackgroundModalOptions(val isVisible: Boolean, val onClose: () -> Unit, val parameters: BackgroundModalParameters, val backgroundColor: Color = Color(0xFFF5F5F5), val position: String = "center", val customBackgrounds: List<VirtualBackground>? = null, val allowCustomUpload: Boolean = true, val showColorPicker: Boolean = true, val showPreview: Boolean = true)

Options for the BackgroundModal widget.

Link copied to clipboard

Parameters for the BackgroundModal widget.

Functions

Link copied to clipboard
fun BackgroundModal(options: BackgroundModalOptions, modifier: Modifier = Modifier)

BackgroundModal - Modal for selecting virtual backgrounds.

Link copied to clipboard
actual fun ProcessedFrameView(bitmap: Any?, modifier: Modifier)

Android implementation of ProcessedFrameView. Renders an android.graphics.Bitmap to a Compose Image.

expect fun ProcessedFrameView(bitmap: Any?, modifier: Modifier = Modifier)

Platform-specific composable to render a processed bitmap frame. On Android, this renders an android.graphics.Bitmap. On iOS, this renders a UIImage (not implemented yet).