mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 02:34:57 -05:00
These functions were temporarily ripped out of Shiny and moved to the htmltools package. We've discovered that it's safe to keep including them in shiny; as long as the functions in shiny and the functions in htmltools are identical, the user won't receive a conflict warning.
49 lines
1.2 KiB
R
49 lines
1.2 KiB
R
% Generated by roxygen2 (4.0.1): do not edit by hand
|
|
\name{pageWithSidebar}
|
|
\alias{pageWithSidebar}
|
|
\title{Create a page with a sidebar}
|
|
\usage{
|
|
pageWithSidebar(headerPanel, sidebarPanel, mainPanel)
|
|
}
|
|
\arguments{
|
|
\item{headerPanel}{The \link{headerPanel} with the application title}
|
|
|
|
\item{sidebarPanel}{The \link{sidebarPanel} containing input controls}
|
|
|
|
\item{mainPanel}{The \link{mainPanel} containing outputs}
|
|
}
|
|
\value{
|
|
A UI defintion that can be passed to the \link{shinyUI} function
|
|
}
|
|
\description{
|
|
Create a Shiny UI that contains a header with the application title, a
|
|
sidebar for input controls, and a main area for output.
|
|
}
|
|
\note{
|
|
This function is deprecated. You should use \code{\link{fluidPage}}
|
|
along with \code{\link{sidebarLayout}} to implement a page with a sidebar.
|
|
}
|
|
\examples{
|
|
# Define UI
|
|
shinyUI(pageWithSidebar(
|
|
|
|
# Application title
|
|
headerPanel("Hello Shiny!"),
|
|
|
|
# Sidebar with a slider input
|
|
sidebarPanel(
|
|
sliderInput("obs",
|
|
"Number of observations:",
|
|
min = 0,
|
|
max = 1000,
|
|
value = 500)
|
|
),
|
|
|
|
# Show a plot of the generated distribution
|
|
mainPanel(
|
|
plotOutput("distPlot")
|
|
)
|
|
))
|
|
}
|
|
|