Added color around dialogs to improve contrast

This commit is contained in:
Abdelilah El Aissaoui 2022-06-23 13:32:07 +02:00
parent 6a44e8f958
commit 8d6df8a9e0

View File

@ -3,6 +3,7 @@
package app.ui.dialogs package app.ui.dialogs
import androidx.compose.foundation.background import androidx.compose.foundation.background
import androidx.compose.foundation.border
import androidx.compose.foundation.focusable import androidx.compose.foundation.focusable
import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxSize
@ -25,6 +26,7 @@ import androidx.compose.ui.unit.*
import androidx.compose.ui.window.Popup import androidx.compose.ui.window.Popup
import androidx.compose.ui.window.PopupPositionProvider import androidx.compose.ui.window.PopupPositionProvider
import app.theme.dialogOverlay import app.theme.dialogOverlay
import app.theme.primaryTextColor
@Composable @Composable
fun MaterialDialog( fun MaterialDialog(
@ -69,7 +71,8 @@ fun MaterialDialog(
) { ) {
Box( Box(
modifier = Modifier modifier = Modifier
.clip(RoundedCornerShape(15.dp)) .border(1.dp, MaterialTheme.colors.onBackground.copy(alpha = 0.1f), RoundedCornerShape(16.dp))
.clip(RoundedCornerShape(16.dp))
.background(MaterialTheme.colors.background) .background(MaterialTheme.colors.background)
.padding( .padding(
horizontal = paddingHorizontal, horizontal = paddingHorizontal,