shinydashboardPlus (version 0.7.0)

dashboardFooter: Dashboard Footer

Description

This creates a dashboard footer

Usage

dashboardFooter(left_text = NULL, right_text = NULL)

Arguments

left_text

Left text.

right_text

Right text.

Examples

Run this code
# NOT RUN {
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) { }
)
}
# }

Run the code above in your browser using DataLab