Description Usage Arguments Examples
Create a tabstrip panel that contains tabPanel
elements. Similar to tabsetPanel
, but optimized for
small page sizes like mobile devices or the RStudio Viewer pane.
1 | tabstripPanel(..., id = NULL, selected = NULL, between = NULL)
|
... |
|
id |
If provided, you can use |
selected |
The |
between |
A tag or list of tags that should be inserted between the content (above) and tabstrip (below). |
1 2 3 4 5 6 7 8 9 | library(shiny)
tabstripPanel(
tabPanel("Data",
selectInput("dataset", "Data set", ls("package:datasets"))),
tabPanel("Subset",
uiOutput("subset_ui")
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.