dashboardFooter: Dashboard Footer

Description Usage Arguments Examples

View source: R/dashboardFooter.R

Description

This creates a dashboard footer

Usage

1
dashboardFooter(left = NULL, right = NULL)

Arguments

left

Left text.

right

Right text.

Examples

 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 = dashboardPage(
    header = dashboardHeader(),
    sidebar = dashboardSidebar(),
    body = dashboardBody(),
    footer = dashboardFooter(
     left = "By Divad Nojnarg",
     right = "Zurich, 2019"
    ),
    title = "DashboardPage"
  ),
  server = function(input, output) { }
)
}

Example output



shinydashboardPlus documentation built on Sept. 16, 2021, 1:06 a.m.