View source: R/dashboardFooter.R
dashboardFooter | R Documentation |
This creates a dashboard footer
dashboardFooter(left = NULL, right = NULL)
left |
Left text. |
right |
Right text. |
if (interactive()) {
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
shinyApp(
ui = dashboardPage(
header = dashboardHeader(),
sidebar = dashboardSidebar(),
body = dashboardBody(),
footer = dashboardFooter(
left = "By Divad Nojnarg",
right = "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.