dashboardFooter: Dashboard Footer

View source: R/dashboardFooter.R

dashboardFooterR Documentation

Dashboard Footer

Description

This creates a dashboard footer

Usage

dashboardFooter(left = NULL, right = NULL)

Arguments

left

Left text.

right

Right text.

Examples

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

DivadNojnarg/shinydashboardPlus documentation built on April 14, 2024, 11:21 a.m.