Skip to content

Commit

Permalink
Update dependency androidx.constraintlayout:constraintlayout-compose …
Browse files Browse the repository at this point in the history
…to v1.1.0 (#3770)

* Update dependency androidx.constraintlayout:constraintlayout-compose to v1.1.0

* Fix negative margin usage

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jorge Martín <[email protected]>
  • Loading branch information
renovate[bot] and jmartinesp authored Nov 4, 2024
1 parent 5b12fec commit 8abb1dd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8abb1dd

Please sign in to comment.