Add background to loading state

This commit is contained in:
Benoit Marty 2024-12-20 14:44:14 +01:00
parent 8b9e799291
commit ee4595eb54

View file

@ -460,6 +460,10 @@ private fun EmptyContent(
private fun LoadingContent(
mode: MediaGalleryMode,
) {
Box(
modifier = Modifier.fillMaxSize(),
) {
OnboardingBackground()
Column(
modifier = Modifier
.fillMaxSize()
@ -479,6 +483,7 @@ private fun LoadingContent(
)
}
}
}
@PreviewsDayNight
@Composable