mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-23 13:16:36 +00:00
android: change scrim color for new chat button in dark mode
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user