uiinput: Create Semantic UI Input

View source: R/input.R

uiinputR Documentation

Create Semantic UI Input

Description

This creates an input shell for the actual input

Usage

uiinput(..., class = "")

Arguments

...

Other arguments to be added as attributes of the tag (e.g. style, class or childrens etc.)

class

Additional classes to add to html tag.

See Also

text_input

Examples

#' ## Only run examples in interactive R sessions
if (interactive()) {
library(shiny)
library(shiny.semantic)

ui <- semanticPage(
  uiinput(icon("dog"),
          numeric_input("input", value = 0, label = "")
  )
)

server <- function(input, output, session) {
}

shinyApp(ui, server)
}


Appsilon/shiny.semantic documentation built on April 21, 2024, 5:49 p.m.