Код: Выделить всё
LazyColumn {
items(1) { index ->
Text(text = "Item: $index")
}
items(2) { index ->
Text(text = "Item: $index")
}
items(6) { index ->
Text(text = "Item: $index")
}
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... essive-way