tablerTable | R Documentation |
Build a tabler table container
tablerTable(..., title = NULL, width = 4)
... |
Slot for tablerTableItem. |
title |
Card wrapper title. |
width |
Card wrapper width. |
David Granjon, dgranjon@ymail.com
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = NULL,
footer = NULL,
title = "test",
body = tablerDashBody(
tablerTable(
title = "tablerTable",
tablerTableItem(
left = tablerTag(name = "Tag"),
right = tablerTag(name = "Tag", href = "https://www.google.com")
),
tablerTableItem(right = tablerStatus(color = "red")),
tablerTableItem(
left = tablerAvatarList(
stacked = TRUE,
tablerAvatar(
name = "DG",
size = "xxl"
),
tablerAvatar(
name = "DG",
color = "orange"
),
tablerAvatar(
name = "DG",
status = "warning"
),
tablerAvatar(url = "https://image.flaticon.com/icons/svg/145/145852.svg")
)
)
)
)
),
server = function(input, output) {}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.