
Last chance! 50% off unlimited learning
Sale ends in
tabPanel
elements.navbarPage(title, ..., id = NULL, header = NULL, footer = NULL,
inverse = FALSE, collapsable = FALSE, fluid = TRUE, responsive = TRUE,
theme = NULL)navbarMenu(title, ..., icon = NULL)
navbarMenu
function can be used to create an embedded
menu within the navbar that in turns includes additional tabPanels (see
example below).tabPanel
, tabsetPanel
shinyUI(navbarPage("App Title",
tabPanel("Plot"),
tabPanel("Summary"),
tabPanel("Table")
))
shinyUI(navbarPage("App Title",
tabPanel("Plot"),
navbarMenu("More",
tabPanel("Summary"),
tabPanel("Table")
)
))
Run the code above in your browser using DataLab