tab_panel {fomantic.plus} | R Documentation |
Tab Panel
Description
Create a tab panel
Usage
tab_panel(
title,
...,
value = title,
icon = NULL,
type = "bottom attached segment"
)
Arguments
title |
Display title for tab |
... |
UI elements to include within the tab |
value |
The value that should be sent when |
icon |
Optional icon to appear on the tab.
This attribute is only valid when using a |
type |
Change depending what type of tab is wanted. Default is |
Value
A tab that can be passed to navbar_menu
.
See Also
Examples
navbar_menu(
tab_panel("Plot", shiny::plotOutput("plot")),
tab_panel("Summary", shiny::verbatimTextOutput("summary")),
tab_panel("Table", shiny::tableOutput("table"))
)
[Package fomantic.plus version 0.1.0 Index]