powered by
Creates a full-width container for one or more buttons. The horizontal space will be evenly divided among any buttons that are added.
miniButtonBlock(..., border = "top")
One or more actionButton or downloadButton objects.
actionButton
downloadButton
Zero or more of c("top", "bottom"), indicating which sides should have borders, if any.
c("top", "bottom")
When using miniButtonBlock with a miniTabstripPanel, consider passing the miniButtonBlock to miniTabstripPanel as the between argument.
miniButtonBlock
miniTabstripPanel
between
For more information, see the Designing Gadget UI article on shiny.rstudio.com.
# NOT RUN { library(shiny) miniButtonBlock( actionButton("reset", "Reset to defaults"), actionButton("clear", "Clear all") ) # }
Run the code above in your browser using DataLab