Description Usage Arguments See Also Examples
View source: R/bootstrap-layout.R
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)
1 | verticalLayout(..., fluid = TRUE)
|
... |
Elements to include within the container |
fluid |
|
1 2 3 4 5 6 7 8 9 10 11 12 | ## 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) { })
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.