TabList

fun TabGroupScope.TabList(modifier: Modifier = Modifier, shape: Shape = RectangleShape, backgroundColor: Color = Color.Unspecified, orientation: Orientation = Orientation.Horizontal, activateOnFocus: Boolean = true, content: @Composable RowScope.() -> Unit)

A container holding all Tabs that can be selected withing a TabGroup.

Parameters

modifier

Modifier to be applied to the tab list.

shape

The shape of the tab list.

backgroundColor

The background color of the tab list.

orientation

The orientation of the tab list.

activateOnFocus

Whether to activate a tab when it receives focus.

content

The content of the tab list.