Merge branch 'develop' into feature/fga/update_create_room_flow

This commit is contained in:
ganfra 2024-11-05 09:33:35 +01:00 committed by GitHub
commit 9aa08ac3f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View file

@ -325,7 +325,12 @@ private fun TimelineItemEventRowContent(
MessageEventBubble(
modifier = Modifier
.constrainAs(message) {
top.linkTo(sender.bottom, margin = NEGATIVE_MARGIN_FOR_BUBBLE)
val topMargin = if (bubbleState.cutTopStart) {
NEGATIVE_MARGIN_FOR_BUBBLE
} else {
0.dp
}
top.linkTo(sender.bottom, margin = topMargin)
if (event.isMine) {
end.linkTo(parent.end, margin = 16.dp)
} else {

View file

@ -18,7 +18,7 @@ core = "1.13.1"
# Stick to 1.0.0 for now, and ensure that this scenario cannot be reproduced when upgrading the version.
datastore = "1.0.0"
constraintlayout = "2.1.4"
constraintlayout_compose = "1.0.1"
constraintlayout_compose = "1.1.0"
lifecycle = "2.8.6"
activity = "1.9.3"
media3 = "1.4.1"