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, responsive = NULL, theme = NULL)basicPage(...)
The contents of the document body.
The browser window title (defaults to the host URL of the page)
This option is deprecated; it is no longer optional with Bootstrap 3.
Alternative Bootstrap stylesheet (normally a css file within the
www directory, e.g. www/bootstrap.css
)
A UI defintion that can be passed to the shinyUI function.
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()
.