miniContentPanel {miniUI} | R Documentation |
Create a content panel
Description
Creates a panel for containing arbitrary content within a flex box container.
This is mainly useful within miniPage
or a
miniTabPanel
. You can use miniContentPanel
to introduce
padding and/or scrolling, but even if padding/scrolling aren't needed, it's a
good idea to wrap your custom content into miniContentPanel
as it
fixes some odd behavior with percentage-based heights.
Usage
miniContentPanel(..., padding = 15, scrollable = TRUE)
Arguments
... |
UI objects to be contained in the |
padding |
Amount of padding to apply. Can be numeric (in pixels) or
character (e.g. |
scrollable |
If |
See Also
For more information, see the Designing Gadget UI article on shiny.rstudio.com.
Examples
library(shiny)
miniContentPanel(padding = 0,
plotOutput("plot", height = "100%")
)