Maybe you want something like this? Set the scroll state to the last element, instead of using reverseLayout
val items = List(10) { it }
val state = rememberLazyListState()
LaunchedEffect(Unit) {
state.scrollToItem(items.lastIndex)
}
LazyColumn(
state = state
) {
stickyHeader {
Text("End to End Enabled for this chat")
}
items(items) {
ListItem(
headlineContent = {
Text("Item $it")
}
)
}
}