Create a standard UI layout with output on the right and an encoding panel on the left
Source:R/standard_layout.R
standard_layout.RdUsage
standard_layout(
output,
encoding = NULL,
forms = NULL,
pre_output = NULL,
post_output = NULL
)Arguments
- output
(
shiny.tag)
object with the output element (table, plot, listing) such as for example returned byshiny::plotOutput().- encoding
(
shiny.tag)
object containing the encoding elements. If this element isNULLthen no encoding side panel on the right is created.- forms
(
tagList)
for exampleshiny::actionButton()that are placed below the encodings panel- pre_output
(
shiny.tag, optional)
with text placed before the output to put the output into context. For example a title.- post_output
(
shiny.tag, optional) with text placed after the output to put the output into context. For example theshiny::helpText()elements are useful.