verticalLayout: Lay out UI elements vertically

Description Usage Arguments See Also Examples

View source: R/layout-misc.R

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)

Usage

1

Arguments

...

Elements to include within the container

fluid

TRUE to use fluid layout; FALSE to use fixed layout.

See Also

fluidPage, flowLayout

Examples

1
2
3
4
5
6
7
8
9
library(shiny)

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")
  )
)

shinybootstrap2 documentation built on May 2, 2019, 4:05 p.m.