Add background to loading state
This commit is contained in:
parent
8b9e799291
commit
ee4595eb54
1 changed files with 20 additions and 15 deletions
|
|
@ -460,6 +460,10 @@ private fun EmptyContent(
|
||||||
private fun LoadingContent(
|
private fun LoadingContent(
|
||||||
mode: MediaGalleryMode,
|
mode: MediaGalleryMode,
|
||||||
) {
|
) {
|
||||||
|
Box(
|
||||||
|
modifier = Modifier.fillMaxSize(),
|
||||||
|
) {
|
||||||
|
OnboardingBackground()
|
||||||
Column(
|
Column(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxSize()
|
.fillMaxSize()
|
||||||
|
|
@ -479,6 +483,7 @@ private fun LoadingContent(
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@PreviewsDayNight
|
@PreviewsDayNight
|
||||||
@Composable
|
@Composable
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue