miniButtonBlock
From miniUI v0.1.1.1
by Joe Cheng
Create a block-level button container
Creates a full-width container for one or more buttons. The horizontal space will be evenly divided among any buttons that are added.
Usage
miniButtonBlock(..., border = "top")
Arguments
- ...
One or more
actionButton
ordownloadButton
objects.- border
Zero or more of
c("top", "bottom")
, indicating which sides should have borders, if any.
Details
When using miniButtonBlock
with a miniTabstripPanel
, consider
passing the miniButtonBlock
to miniTabstripPanel
as the
between
argument.
See Also
For more information, see the Designing Gadget UI article on shiny.rstudio.com.
Examples
# NOT RUN {
library(shiny)
miniButtonBlock(
actionButton("reset", "Reset to defaults"),
actionButton("clear", "Clear all")
)
# }
Community examples
Looks like there are no examples yet.