I tried multiple options with ScrollableTabRow or TabRow it is now having any property to set the orientation to vertical.
Any other ways like colums with scrollabble?
Did not find any property to set the orientation
Row {
ScrollableTabRow(
selectedTabIndex = selectedTabIndex,
contentColor = Color.White,
edgePadding = 0.dp,
modifier = Modifier.weight(1f)
) {
tabs.forEachIndexed { tabIndex, tab ->
Tab(
selected = selectedTabIndex == tabIndex,
onClick = { onTabClick(tabIndex) },
text = { Text(text = tab) }
)
}
}
}