CircularLoadingProgressOverlay

@Composable
fun CircularLoadingProgressOverlay(    modifier: Modifier = Modifier,     overlayColor: Color = Color.Black,     isOverlayVisible: Boolean,     content: @Composable () -> Unit)

Displays an overlay over the content with a circular progress indicator.It takes up the entire size of size of its parent.

Parameters

modifier

Modifier that will be applied to the overlay.

overlayColor

The background color of the overlay.This color will always be displayed with an alpha of 0.5f.

isOverlayVisible

Indicates whether the overlay is visible or not.

content

The content over which the overlay should be visible.