Description Usage Arguments Examples
View source: R/dashboardFooter.R
This creates a dashboard footer
1 | dashboardFooter(left_text = NULL, right_text = NULL)
|
left_text |
Left text. |
right_text |
Right text. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | if (interactive()) {
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
shinyApp(
ui = dashboardPagePlus(
header = dashboardHeaderPlus(
enable_rightsidebar = TRUE,
rightSidebarIcon = "gears"
),
sidebar = dashboardSidebar(),
body = dashboardBody(),
rightsidebar = rightSidebar(),
footer = dashboardFooter(
left_text = "By Divad Nojnarg",
right_text = "Zurich, 2019"
),
title = "DashboardPage"
),
server = function(input, output) { }
)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.