feat: Extract replyToMessageId from attachments and implement custom PBKDF2 key derivation

This commit is contained in:
2026-01-16 02:32:19 +05:00
parent f8ba10be54
commit 25d4d5cdcc
3 changed files with 141 additions and 33 deletions

View File

@@ -2485,9 +2485,16 @@ private fun MessageInputBar(
)
}
}
IconButton(
onClick = onCloseReply,
modifier = Modifier.size(32.dp)
// 🔥 Box с clickable вместо IconButton - убираем задержку ripple
Box(
modifier = Modifier
.size(32.dp)
.clickable(
interactionSource = remember { MutableInteractionSource() },
indication = null, // Убираем ripple индикацию для мгновенного клика
onClick = onCloseReply
),
contentAlignment = Alignment.Center
) {
Icon(
Icons.Default.Close,