TabPanel

fun TabsScope.TabPanel(    tabText: String,     tabModifier: Modifier = Modifier,     panelModifier: Modifier = Modifier,     enabled: Boolean = true,     isDefault: Boolean = false,     content: @Composable BoxScope.() -> Unit)(source)

Convenience method for creating a tab panel whose tab is just text.

Using it looks like this:

TabPanel("Tab") {
  /* ... panel definition here ... */
}