JetpackTabRow
fun JetpackTabRow(selectedTabIndex: Int, modifier: Modifier = Modifier, tabs: @Composable () -> Unit)
Jetpack tab row. Wraps Material 3 TabRow.
Parameters
selectedTabIndex
The index of the currently selected tab.
modifier
Modifier to be applied to the tab row.
tabs
The tabs inside this tab row. Typically this will be multiple JetpackTabs. Each element inside this lambda will be measured and placed evenly across the row, each taking up equal space.