tablerDashPage {tablerDash} | R Documentation |
Create a Boostrap 4 dashboard page
Description
Build a tabler dashboard page
Usage
tablerDashPage(navbar = NULL, body = NULL, footer = NULL,
title = NULL, enable_preloader = FALSE, loading_duration = 2)
Arguments
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. |
Author(s)
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) {}
)
}
[Package tablerDash version 0.1.0 Index]