dashboardFooter: Dashboard Footer

Description Usage Arguments Examples

View source: R/dashboardFooter.R

Description

This creates a dashboard footer

Usage

1
dashboardFooter(left_text = NULL, right_text = NULL)

Arguments

left_text

Left text.

right_text

Right text.

Examples

 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) { }
)
}

dsciencelabs/shinydashboardPlus documentation built on Dec. 20, 2021, 2:10 a.m.