Nothing
library(muiMaterial)
library(shiny)
# https://mui.com/material-ui/api/filled-input/
# FilledInput is the "filled" variant of the base input. Like Input and
# OutlinedInput, its value is reported to the server (debounced ~250ms).
ui_FilledInput <- muiMaterialPage(
CssBaseline(),
Box(
sx = list(p = 2),
FormControl(
variant = "filled",
InputLabel(htmlFor = "filled", "Name"),
FilledInput.shinyInput(
inputId = "filled",
value = ""
)
),
verbatimTextOutput("filledValue")
)
)
server_FilledInput <- function(input, output, session) {
output$filledValue <- renderText({
input$filled
})
}
if (interactive()) {
shinyApp(ui = ui_FilledInput, server = server_FilledInput)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.