ukTextAreaInput.Rd
UIkit text input for shiny
ukTextAreaInput(inputId, label, rows = 3L, placeholder = NULL, width = NULL)
inputId | character. The input identifider used to access the value. |
---|---|
label | character. Input label. |
placeholder | character. Input placeholder. |
row | integer. Number of rows for text canvas. |
# NOT RUN { library(shiny) shinyApp( ui = ukPage( tags$h1("Hello UIkit"), ukTextAreaInput("txt", label = "Input text", placeholder = "Type here"), verbatimTextOutput("default") ), server = function(input, output) { output$default <- renderText({ input$txt }) } ) # }