Examples for 'shiny::verticalLayout'


Lay out UI elements vertically

Aliases: verticalLayout

Keywords:

### ** Examples

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

ui <- fluidPage(
  verticalLayout(
    a(href="http://example.com/link1", "Link One"),
    a(href="http://example.com/link2", "Link Two"),
    a(href="http://example.com/link3", "Link Three")
  )
)
shinyApp(ui, server = function(input, output) { })
}
Error in loadNamespace(name): there is no package called 'webshot'

[Package shiny version 1.5.0 Index]