Description Usage Arguments See Also Examples
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.
1 | miniContentPanel(..., padding = 15, scrollable = TRUE)
|
... |
UI objects to be contained in the |
padding |
Amount of padding to apply. Can be numeric (in pixels) or
character (e.g. |
scrollable |
If |
For more information, see the Designing Gadget UI article on shiny.rstudio.com.
1 2 3 4 5 | library(shiny)
miniContentPanel(padding = 0,
plotOutput("plot", height = "100%")
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.