MyChipsSingleRowIndex

fun <T> MyChipsSingleRowIndex(items: List<T>, selectedIndex: MutableState<Int>, modifier: Modifier = Modifier, mapper: @Composable (item: T) -> String = { it.toString() }, minSegmentWidth: Dp = 40.dp, color: Color = Color.Unspecified, singleRow: Boolean = false, onSelectionChange: (Int) -> Unit? = null)
fun <T> MyChipsSingleRowIndex(items: List<T>, selectedIndex: Int, modifier: Modifier = Modifier, mapper: @Composable (item: T) -> String = { it.toString() }, minSegmentWidth: Dp = 40.dp, color: Color = Color.Unspecified, singleRow: Boolean = false, onSelectionChange: (Int) -> Unit)