Skip to contents

Create a Shiny UI page using a gridPanel to wrap the page content. As other Shiny UI pages, it scaffolds the entire page and loads any required or registered dependencies.

Usage

gridPage(..., title = NULL, fill_page = TRUE, dependency = bootstrapLib())

Arguments

...

Arguments to be passed to gridPanel.

title

The browser window title (defaults to the host URL of the page).

fill_page

Boolean value if the page should automatically stretch to match the browser window height.

dependency

A set of web dependencies. This value can be a htmlDependency, for example the shiny bootstrap dependency (default value) or a tagList with different dependencies.

Value

A UI definition that can be passed to the shinyUI function.

Note

See https://css-tricks.com/snippets/css/complete-guide-grid/ for additional details on using css grids.

See also