tablerTagList {tablerDash} | R Documentation |
Create a Boostrap 4 tag list
Description
Build a tabler tag list
Usage
tablerTagList(...)
Arguments
... |
Slot for tablerTag. |
Author(s)
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(tablerDash)
shiny::shinyApp(
ui = tablerDashPage(
navbar = NULL,
footer = NULL,
title = "test",
body = tablerDashBody(
tablerTagList(
lapply(X = 1:5, FUN = function(i) {
tablerTag(name = i)
})
)
)
),
server = function(input, output) {}
)
}
[Package tablerDash version 0.1.0 Index]