Fix color error.
This commit is contained in:
committed by
Benoit Marty
parent
71fa01f8b6
commit
e889856d1c
+3
-3
@@ -48,19 +48,19 @@ fun ProgressDialog(
|
||||
modifier = modifier
|
||||
.fillMaxWidth()
|
||||
.background(
|
||||
color = ElementTheme.colors.onBackground,
|
||||
color = ElementTheme.colors.surfaceVariant,
|
||||
shape = RoundedCornerShape(8.dp)
|
||||
)
|
||||
) {
|
||||
Column(horizontalAlignment = Alignment.CenterHorizontally) {
|
||||
CircularProgressIndicator(
|
||||
modifier = Modifier.padding(16.dp),
|
||||
color = ElementTheme.colors.background
|
||||
color = ElementTheme.colors.onSurfaceVariant
|
||||
)
|
||||
if (!text.isNullOrBlank()) {
|
||||
Text(
|
||||
text = text,
|
||||
color = ElementTheme.colors.background,
|
||||
color = ElementTheme.colors.onSurfaceVariant,
|
||||
modifier = Modifier.padding(16.dp)
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user