Add footer to shiny dashboard?

3,063 views
Skip to first unread message

ignacio martinez

unread,
Mar 11, 2016, 7:54:49 AM3/11/16
to Shiny - Web Framework for R

Is there a way to add a footer to a shiny dashboard?. Suppose you have the following very basic example, and you want to add a footer to `dashboardBody()`



## app.R ##
library(shiny)
library(shinydashboard)

ui <- dashboardPage(
  dashboardHeader(),
  dashboardSidebar(),
  dashboardBody()
)

server <- function(input, output) { }

shinyApp(ui, server)



Thanks for the help!

nadeem saif

unread,
Oct 14, 2016, 2:32:25 AM10/14/16
to Shiny - Web Framework for R
dashboardBody(
        /*  

           Body Content

        */
        ,
        tags$footer("Your Footer text")
)

That should do it
Reply all
Reply to author
Forward
0 new messages