| tablerDashPage | R Documentation |
Build a tabler dashboard page
tablerDashPage(navbar = NULL, body = NULL, footer = NULL, title = NULL, enable_preloader = FALSE, loading_duration = 2)
navbar |
Slot for tablerDashNav. |
body |
Slot for tablerDashBody. |
footer |
Slot for tablerDashFooter. |
title |
App title. |
enable_preloader |
Whether to enable a page loader. FALSE by default. |
loading_duration |
Loader duration in seconds. 2s by default. |
David Granjon, dgranjon@ymail.com
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = tablerDashNav(),
footer = tablerDashFooter(),
title = "test",
body = tablerDashBody()
),
server = function(input, output) {}
)
}