ControlGroup {shiny.blueprint} | R Documentation |
Control group
Description
Documentation: https://blueprintjs.com/docs/#core/components/control-group
Usage
ControlGroup(...)
Arguments
... |
Component props and children. See the official Blueprint docs for details. |
Value
Object with shiny.tag
class suitable for use in the UI of a Shiny app.
Examples
library(shiny.blueprint)
library(shiny)
ui <- function(id) {
ControlGroup(
HTMLSelect(options = rownames(mtcars)),
InputGroup(placeholder = "Find car..."),
Button(icon = "arrow-right"),
)
}
server <- function(id) {
moduleServer(id, function(input, output, session) {})
}
if (interactive()) shinyApp(ui("app"), function(input, output) server("app"))
[Package shiny.blueprint version 0.3.0 Index]