🌈 Create new beautiful Compose Gradients with our new wesite ->

ScalingLazyColumn

PREVIEW IS NOT AVAILABLE YET

Kotlin
@Composable
fun SimpleScalingLazyColumn() {
    ScalingLazyColumn(modifier = Modifier.fillMaxWidth()) {
        item { ListHeader { Text(text = "List Header") } }
        items(20) {
            Chip(
                onClick = {},
                label = { Text("List item $it") },
                colors = ChipDefaults.secondaryChipColors(),
            )
        }
    }
}