mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 10:45:06 -05:00
20 lines
445 B
R
20 lines
445 B
R
\name{verticalLayout}
|
|
\alias{verticalLayout}
|
|
\title{Layout UI elements vertically}
|
|
\usage{
|
|
verticalLayout(...)
|
|
}
|
|
\arguments{
|
|
\item{...}{Elements to include within the container}
|
|
}
|
|
\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)
|
|
}
|
|
\note{
|
|
The \code{verticalLayout} function can only be used
|
|
within a \code{\link{fluidPage}}.
|
|
}
|
|
|