Examples for 'shiny::flowLayout'


Flow layout

Aliases: flowLayout

Keywords:

### ** Examples

## Only run examples in interactive R sessions
if (interactive()) {

ui <- flowLayout(
  numericInput("rows", "How many rows?", 5),
  selectInput("letter", "Which letter?", LETTERS),
  sliderInput("value", "What value?", 0, 100, 50)
)
shinyApp(ui, server = function(input, output) { })
}
Error in loadNamespace(name): there is no package called 'webshot'

[Package shiny version 1.5.0 Index]