UIkit text input for shiny

ukTextAreaInput(inputId, label, rows = 3L, placeholder = NULL,
  width = NULL)

Arguments

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.

Examples

# 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 })
  }
)
# }