Select.shinyInput | R Documentation |
Visit the documentation at https://mui.com/api/Select/ for more information.
Select.shinyInput(inputId, ..., value = defaultValue)
inputId |
the shiny input id |
... |
args to pass to element |
value |
the default value of the element |
library(shiny.mui) library(shiny) if (interactive()) { shinyApp( ui = div( Select.shinyInput("text", value = 5,fullWidth = T, MenuItem(value = 5, 5)), textOutput("textValue") ), server = function(input, output) { output$textValue <- renderText({ sprintf("Value: %s", input$text) }) } ) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.