Examples for 'shiny::fixedPage'


Create a page with a fixed layout

Aliases: fixedPage fixedRow

Keywords:

### ** Examples

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

ui <- fixedPage(
  title = "Hello, Shiny!",
  fixedRow(
    column(width = 4,
      "4"
    ),
    column(width = 3, offset = 2,
      "3 offset 2"
    )
  )
)

shinyApp(ui, server = function(input, output) { })
}
Error in loadNamespace(name): there is no package called 'webshot'

[Package shiny version 1.5.0 Index]