Build a tabler dashboard page
Usage
tablerDashPage(
navbar = NULL,
body = NULL,
footer = NULL,
title = NULL,
enable_preloader = FALSE,
loading_duration = 2
)
Arguments
Slot for tablerDashNav.
- body
Slot for tablerDashBody.
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.
Author
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = tablerDashNav(),
footer = tablerDashFooter(),
title = "test",
body = tablerDashBody()
),
server = function(input, output) {}
)
}