I think FlowRow
is what you're looking for.
Example
FlowRow {
lodgingPropertyList.forEach {
CustomeChipElement(
text = it.name,
isSelected = false,
onClick = {}
)
}
}
You read more about Flow layout in Jetpack Compose here: https://developer.android.com/develop/ui/compose/layouts/flow#features-flow