Skip to content

Loading Screen

The Loading screen displays a busy indicator and an optional message to indicate that a task is running.

Loading Screen

Definition

@Composable
fun LoadingScreen(
    @StringRes message: Int? = null,
) { ... }

Example

composable("screen_loading") {
    LoadingScreen(
        message = R.string.screen_loading
    )
}

Last update: February 20, 2023