RTL: ensure the sender information are displayed at the start of the screen.

This commit is contained in:
Benoit Marty
2024-10-15 10:39:59 +02:00
parent e8eae1eb97
commit 98fbb04fae

View File

@@ -301,6 +301,8 @@ private fun TimelineItemEventRowContent(
Modifier
.constrainAs(sender) {
top.linkTo(parent.top)
// Required for correct RTL layout
start.linkTo(parent.start)
}
.padding(horizontal = 16.dp)
.zIndex(1f)