Skip to contents

The tabs is the ui5 equivalent of shiny::tabsetPanel, note that this is not meant to be used as the main navigation of the app.

See the official documentation for all the correct props.

tab_container(
  tab(
    icon = "menu",
    text = "Tab 1",
    "This is the first tab"
  ),
  tab(
    icon = "activities",
    text = "Tab 2",
    "This is the second tab"
  ),
  tab_separator(),
  tab(
    icon = "add",
    text = "Tab 3",
    "This is the third tab"
  )
)
This is the first tabThis is the second tabThis is the third tab