Description Usage Arguments See Also Examples
View source: R/dashboardPagePlus.R
This creates a dashboard page for use in a Shiny app.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | dashboardPagePlus(
header,
sidebar,
body,
rightsidebar = NULL,
footer = NULL,
title = NULL,
skin = c("blue", "blue-light", "black", "black-light", "purple", "purple-light",
"green", "green-light", "red", "red-light", "yellow", "yellow-light", "midnight"),
collapse_sidebar = FALSE,
sidebar_background = NULL,
sidebar_fullCollapse = FALSE,
enable_preloader = FALSE,
loading_duration = 2,
md = FALSE
)
|
header |
A header created by |
sidebar |
A sidebar created by |
body |
A body created by |
rightsidebar |
A right sidebar created by |
footer |
A footer created by |
title |
A title to display in the browser's title bar. If no value is
provided, it will try to extract the title from the
|
skin |
A color theme. See https://adminlte.io/themes/AdminLTE/pages/UI/general.html. |
collapse_sidebar |
Whether to collapse the left sidebar. TRUE by default. |
sidebar_background |
Main sidebar background color: either "light" or NULL. NULL by default. |
sidebar_fullCollapse |
Whether to fully collapse the sidebar as with shinydashboard. FALSE by default. |
enable_preloader |
Whether to enable a page loader. FALSE by default. |
loading_duration |
Loader duration in seconds. 2s by default. |
md |
Whether to enable material design. Experimental... |
dashboardHeaderPlus
, dashboardSidebar
,
dashboardBody
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | if (interactive()) {
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
shinyApp(
ui = dashboardPagePlus(
header = dashboardHeaderPlus(
enable_rightsidebar = TRUE,
rightSidebarIcon = "gears"
),
sidebar = dashboardSidebar(),
body = dashboardBody(),
rightsidebar = rightSidebar(),
title = "DashboardPage"
),
server = function(input, output) { }
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.