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 5e6f5f4449
commit 9c2a08e269

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)