Build a tabler stat card
Author
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = NULL,
footer = NULL,
title = "test",
body = tablerDashBody(
tablerStatCard(
value = 43,
title = "Followers",
trend = -10
)
)
),
server = function(input, output) {}
)
}