Dashboard Footer
This creates a dashboard footer
dashboardFooter(left = NULL, right = NULL)
left |
Left text. |
right |
Right text. |
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) { } ) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.