page | R Documentation |
These functions are small wrappers around shiny's page constructors (i.e.,
shiny::fluidPage()
, shiny::navbarPage()
, etc) that differ in two ways:
The theme
parameter defaults bslib's recommended version of Bootstrap (for new projects).
The return value is rendered as an static HTML page when printed interactively at the console.
page(..., title = NULL, theme = bs_theme(), lang = NULL)
page_fluid(..., title = NULL, theme = bs_theme(), lang = NULL)
page_fixed(..., title = NULL, theme = bs_theme(), lang = NULL)
... |
UI elements for the page. Named arguments become HTML attributes. |
title |
The browser window title (defaults to the host URL of the page) |
theme |
A |
lang |
ISO 639-1 language code for the HTML page, such as "en" or "ko".
This will be used as the lang in the |
page()
: A bslib wrapper for shiny::bootstrapPage()
, a basic
Boostrap page where the content is added directly to the page body.
page_fluid()
: A bslib wrapper for shiny::fluidPage()
, a fluid
Bootstrap-based page layout that extends to the full viewport width.
page_fixed()
: A bslib wrapper for shiny::fixedPage()
, a fixed
Bootstrap-based page layout where the page content container is centered
horizontally and its width is constrained.
Dashboard-style pages: page_sidebar()
, page_navbar()
,
page_fillable()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.