Create a Shiny UI page using a flexPanel to wrap the page content. As other Shiny UI pages, it scaffolds the entire page and loads any required or registered dependencies.
flexPage(..., title = NULL, fill_page = TRUE, dependency = bootstrapLib())
Arguments to be passed to flexPanel.
The browser window title (defaults to the host URL of the page).
Boolean value if the page should automatically stretch to match the browser window height.
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.
A UI definition that can be passed to the shinyUI function.