Add footer to the bottom of dashboardSidebar or dashboardBody.

dcaFooter(message, media = NULL, height = "100px", ...)

Arguments

message

The main text section at the bottom of footer.

media

The top section for media links. Default to NULL.

height

The height of footer. Default to '100px'/

...

List of tag attributes

Examples

if (interactive()) {
  library(shinydashboard)
  dashboardBody(
    dcaFooter("
      Copy right 2022",
      media = mediaButton("google", "https://google.com")
    )
  )
}