verticalLayout {shiny} | R Documentation |
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 |
fluid |
|
shinyUI(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") ) ))