A LazyColumn is a vertically scrolling list that only composes and lays out the currently visible items. It’s similar to a Recyclerview in the classic Android View system.
val users = listOf() LazyColumn(contentPadding = PaddingValues(horizontal = 16.dp)) { items( items = users, itemContent = { //@Composable UI UserListItem(user = it) }) }
LazyColumn( modifier = Modifier.fillMaxWidth() ) { itemsIndexed(items = personList, itemContent = { index, person -> ) { }
LazyColumnItems(items = (0..50).toList()) { item -> }