powered by
This creates a default numeric input using Semantic UI. The input is available under input[[name]].
input[[name]]
uinumericinput(name, value, min = NA, max = NA, step = NA)
Input name. Reactive value is available under input[[name]].
Initial value of the numeric input.
Minimum allowed value.
Maximum allowed value.
Interval to use when stepping between min and max.
The inputs are updateable by using updateNumericInput.
updateNumericInput
# NOT RUN { library(shiny) library(shiny.semantic) # Text input uiinput( tags$label("Numeric Input"), uinumericinput("ex", 10) ) # }
Run the code above in your browser using DataLab