Similar to the shiny checkbox
Arguments
- inputId
The
input
slot that will be used to access the value.- label
Display label for the control, or
NULL
for no label.- value
Initial value (
TRUE
orFALSE
).- width
The width of the input, e.g.
'400px'
, or'100%'
; seevalidateCssUnit()
.
Examples
if (interactive()) {
library(shiny)
library(shiny386)
ui <- page_386(
toggle_input_386("toggle", "Toggle me", TRUE),
verbatimTextOutput("val")
)
server <- function(input, output, session) {
output$val <- renderPrint(input$toggle)
}
shinyApp(ui, server)
}