StatusPage

@Composable
fun StatusPage(title: String, modifier: Modifier = Modifier, description: String? = null, icon: ImageSource? = null, content: @Composable () -> Unit = {})

Creates a org.gnome.adw.StatusPage used for empty/error states and similar use-cases.

Parameters

title

The title to be displayed below the icon.

modifier

Compose Modifier for layout and styling.

description

The description markup to be displayed below the title.

icon

The icon to be used.

content

The composable content to display.