android: change scrim color for new chat button in dark mode

This commit is contained in:
Evgeny Poberezkin
2022-10-05 08:50:24 +01:00
parent 059f1e1e79
commit 22edd92079
@@ -91,7 +91,7 @@ fun ChatListView(chatModel: ChatModel, setPerformLA: (Boolean) -> Unit, stopped:
Modifier
.fillMaxSize()
.clickable(remember { MutableInteractionSource() }, indication = null) { showNewChatDialog = false },
color = if (isInDarkTheme()) MaterialTheme.colors.background.copy(ContentAlpha.disabled) else DrawerDefaults.scrimColor,
color = if (isInDarkTheme()) Color.Black.copy(alpha = 0.64f) else DrawerDefaults.scrimColor,
) {
Column(
verticalArrangement = Arrangement.Bottom,