
Create text field with add-on.
textInputAddon(
inputId,
label,
value = "",
placeholder = NULL,
addon,
width = NULL
)
A switch control that can be added to a UI definition.
The input
slot that will be used to access the value.
Display label for the control, or NULL
for no label.
Initial value..
A character string giving the user a hint as to what can be entered into the control.
An icon tag, created by shiny::icon()
.
The width of the input : 'auto', 'fit', '100px', '75%'.
## Only run examples in interactive R sessions
if (interactive()) {
shinyApp(
ui = fluidPage(
textInputAddon(inputId = "id", label = "Label", placeholder = "Username", addon = icon("at")),
verbatimTextOutput(outputId = "out")
),
server = function(input, output) {
output$out <- renderPrint({
input$id
})
}
)
}
Run the code above in your browser using DataLab