AssistChip
In Compose TV Material
TabRow
PREVIEW IS NOT AVAILABLE YET
Kotlin
@OptIn(ExperimentalComposeUiApi::class)
@Composable
fun PillIndicatorTabRow() {
val tabs = listOf("Tab 1", "Tab 2", "Tab 3")
var selectedTabIndex by remember { mutableStateOf(0) }
TabRow(selectedTabIndex = selectedTabIndex, modifier = Modifier.focusRestorer()) {
tabs.forEachIndexed { index, tab ->
key(index) {
Tab(selected = index == selectedTabIndex, onFocus = { selectedTabIndex = index }) {
Text(
text = tab,
fontSize = 12.sp,
modifier = Modifier.padding(horizontal = 16.dp, vertical = 6.dp),
)
}
}
}
}
}
More Compose TV Material components
View All →
Button
In Compose TV Material
Card
In Compose TV Material
Carousel
In Compose TV Material
Checkbox
In Compose TV Material
ClassicCard
In Compose TV Material
CompactCard
In Compose TV Material
DenseListItem
In Compose TV Material
FilterChip
In Compose TV Material
Icon
In Compose TV Material
IconButton
In Compose TV Material
InputChip
In Compose TV Material
ListItem
In Compose TV Material
MaterialTheme
In Compose TV Material
ModalNavigationDrawer
In Compose TV Material
NavigationDrawer
In Compose TV Material
NavigationDrawerItem
In Compose TV Material
OutlinedButton
In Compose TV Material
OutlinedIconButton
In Compose TV Material
ProvideTextStyle
In Compose TV Material
RadioButton
In Compose TV Material
StandardCardContainer
In Compose TV Material
SuggestionChip
In Compose TV Material
Surface
In Compose TV Material
Switch
In Compose TV Material
Tab
In Compose TV Material
Text
In Compose TV Material
TriStateCheckbox
In Compose TV Material
WideButton
In Compose TV Material
WideCardContainer
In Compose TV Material
WideClassicCard
In Compose TV Material
More Tab components
View All →
LeadingIconTab
In Material 3 Compose
PrimaryScrollableTabRow
In Material 3 Compose
PrimaryTabRow
In Material 3 Compose
ScrollableTabRow
In Material 3 Compose
SecondaryScrollableTabRow
In Material 3 Compose
SecondaryTabRow
In Material 3 Compose
Tab
In Material 3 Compose
TabRow
In Material 3 Compose
LeadingIconTab
In Material Compose
ScrollableTabRow
In Material Compose
Tab
In Material Compose
TabRow
In Material Compose
SelectableChip
In Wear Material Compose
SplitSelectableChip
In Wear Material Compose
Tab
In Compose TV Material