Last chance! 50% off unlimited learning
Sale ends in
Create a container that includes one or more rows of content (each element passed to the container will appear on it's own line in the UI)
verticalLayout(..., fluid = TRUE)
Elements to include within the container
TRUE
to use fluid layout; FALSE
to use fixed
layout.
Other layout functions: fillPage
,
fixedPage
, flowLayout
,
fluidPage
, navbarPage
,
sidebarLayout
, splitLayout
# NOT RUN {
## Only run examples in interactive R sessions
if (interactive()) {
ui <- fluidPage(
verticalLayout(
a(href="http://example.com/link1", "Link One"),
a(href="http://example.com/link2", "Link Two"),
a(href="http://example.com/link3", "Link Three")
)
)
shinyApp(ui, server = function(input, output) { })
}
# }
Run the code above in your browser using DataLab