Add a container.

fullContainer(...)

pageContainer(...)

multiContainer(...)

Arguments

...

any element.

Details

Pass within your grid, sections or slides.

Examples

if(interactive()){ library(shiny) ui <- fullPage( center = TRUE, fullSection( h1("Containers") ), fullSection( h1("Without container"), plotOutput("plot1") ), fullSection( fullContainer( h1("With container"), plotOutput("plot2"), pre( code( "fullContainer()" ) ) ) ) ) server <- function(input, output){ output$plot1 <- renderPlot({ plot(mtcars$wt, mtcars$mpg) }) output$plot2 <- renderPlot({ plot(mtcars$wt, mtcars$mpg) }) } shinyApp(ui, server) }