ukSearchInput.Rd
UIkit search input for shiny
ukSearchInput(inputId, label = NULL, placeholder = NULL, width = NULL, navbar = FALSE, default_style = TRUE, icon = TRUE)
inputId | character. The input identifider used to access the value. |
---|---|
label | character. Input label. |
placeholder | character. Input placeholder. |
width | character. Input width. |
# NOT RUN { library(shiny) shinyApp( ui = ukPage( tags$h1("Hello UIkit"), ukSearchInput("txt", placeholder = "Type here"), verbatimTextOutput("default") ), server = function(input, output) { output$default <- renderText({ input$txt }) } ) # }