ContextualFlowRow
Source set: Common
@Composable
public fun ContextualFlowRow(
itemCount: Int,
modifier: Modifier = Modifier,
horizontalArrangement: Arrangement.Horizontal = Arrangement.Start,
verticalArrangement: Arrangement.Vertical = Arrangement.Top,
itemVerticalAlignment: Alignment.Vertical = Alignment.Top,
maxItemsInEachRow: Int = Int.MAX_VALUE,
maxLines: Int = Int.MAX_VALUE,
overflow: ContextualFlowRowOverflow = ContextualFlowRowOverflow.Clip,
content: @Composable ContextualFlowRowScope.(index: Int) -> Unit,
)