verticalLayout
verticalLayout(..., fluid = TRUE)Arguments
| ... | Elements to include within the container | 
|---|---|
| fluid | TRUEto use fluid layout;FALSEto use fixed
  layout. | 
Description
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)
Examples
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")
  )
))
<div class="container-fluid">
  <div class="row">
    <div class="col-sm-12">
      <a href="http://example.com/link1">Link One</a>
    </div>
  </div>
  <div class="row">
    <div class="col-sm-12">
      <a href="http://example.com/link2">Link Two</a>
    </div>
  </div>
  <div class="row">
    <div class="col-sm-12">
      <a href="http://example.com/link3">Link Three</a>
    </div>
  </div>
</div>