Create a tag https://bulma.io/documentation/elements/tag/.
bulmaTag(label = NULL, color = NULL, size = NULL, style = NULL)
Tag label.
Tag color : link
, info
, primary
, warning
,
danger
, success
, black
, dark
and ligth
.
Tag size : small
,medium
and large
.
Tag style : rounded
or delete
. NULL by default.
if (interactive()) {
library(shiny)
ui <- bulmaPage(
bulmaContainer(
bulmaColumns(
bulmaColumn(
width = 3,
bulmaTag(label = "tag", color = "info", size = NULL, style = NULL),
br(), br(),
bulmaTag(label = "tag", color = "warning", size = NULL, style = NULL),
br(), br(),
bulmaTag(label = "tag", color = "success", size = "large", style = "rounded")
),
bulmaColumn(
width = 3,
bulmaTagList(
bulmaTag(label = "tag", color = "danger", size = "small", style = NULL),
bulmaTag(label = "tag", color = "warning", size = "medium", style = NULL),
bulmaTag(label = "tag", color = "success", size = "large", style = "rounded")
)
),
bulmaDivider(vertical = TRUE),
bulmaColumn(
width = 2,
bulmaTagAddon(
bulmaTag(label = "build", color = "dark", size = "small", style = NULL),
bulmaTag(label = "passing", color = "success", size = "small", style = NULL)
),
bulmaTagAddon(
bulmaTag(label = "npm", color = "dark", size = "small", style = NULL),
bulmaTag(label = "0.5.0", color = "info", size = "small", style = NULL)
),
bulmaTagAddon(
bulmaTag(label = "chat", color = "dark", size = "small", style = NULL),
bulmaTag(label = "on gitter", color = "primary", size = "small", style = NULL)
)
),
bulmaColumn(
width = 4,
bulmaTagAddonList(
bulmaTagAddons(
bulmaTagAddon(
bulmaTag(label = "build", color = "dark", size = "small", style = NULL),
bulmaTag(label = "passing", color = "success", size = "small", style = NULL)
)
),
bulmaTagAddons(
bulmaTagAddon(
bulmaTag(label = "npm", color = "dark", size = "small", style = NULL),
bulmaTag(label = "0.5.0", color = "info", size = "small", style = NULL)
)
),
bulmaTagAddons(
bulmaTagAddon(
bulmaTag(label = "chat", color = "dark", size = "small", style = NULL),
bulmaTag(label = "on gitter", color = "primary", size = "small", style = NULL)
)
)
)
)
)
)
)
server <- function(input, output, session) {
}
shinyApp(ui = ui, server = server)
}