Scrollable Column
All rows are composed eagerly; the viewport is capped at 180 dp.
val scroll = rememberScrollState()
Column(
Modifier
.height(180.dp)
.verticalScroll(scroll)
) {
repeat(20) { index ->
Text("Row $index", Modifier.padding(8.dp))
}
}