Add footer to the bottom of dashboardSidebar
or dashboardBody
.
dcaFooter(message, media = NULL, height = "100px", ...)
The main text section at the bottom of footer.
The top section for media links. Default to NULL.
The height of footer. Default to '100px'/
List of tag attributes
if (interactive()) {
library(shinydashboard)
dashboardBody(
dcaFooter("
Copy right 2022",
media = mediaButton("google", "https://google.com")
)
)
}