bootstrapPage | R Documentation |
Create a Shiny UI page that loads the CSS and JavaScript for Bootstrap, and has no content in the page body (other than what you provide).
bootstrapPage(..., title = NULL, theme = NULL, lang = NULL)
basicPage(...)
... |
The contents of the document body. |
title |
The browser window title (defaults to the host URL of the page) |
theme |
One of the following:
|
lang |
ISO 639-1 language code for the HTML page, such as "en" or "ko".
This will be used as the lang in the |
This function is primarily intended for users who are proficient in HTML/CSS,
and know how to lay out pages in Bootstrap. Most applications should use
fluidPage()
along with layout functions like
fluidRow()
and sidebarLayout()
.
A UI definition that can be passed to the shinyUI function.
The basicPage
function is deprecated, you should use the
fluidPage()
function instead.
fluidPage()
, fixedPage()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.