bs4Badge {bs4Dash} | R Documentation |
Create a Bootstrap 4 dashboard badge item
Description
dashboardBadge creates a badge. It may be inserted in any element like inside a actionButton or a dashboardSidebar.
Usage
bs4Badge(..., color, position = c("left", "right"), rounded = FALSE)
dashboardBadge(..., color, position = c("left", "right"), rounded = FALSE)
Arguments
... |
Badge content. |
color |
Badge color. Valid colors:
|
position |
Badge position: "left" or "right". |
rounded |
Whether the badge is rounded instead of square. FALSE by default. |
Author(s)
David Granjon, dgranjon@ymail.com
Examples
if(interactive()){
library(shiny)
library(bs4Dash)
shinyApp(
ui = dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
dashboardBadge("Badge 1", color = "danger"),
actionButton(
inputId = "badge",
label = "Hello",
icon = NULL,
width = NULL,
dashboardBadge(1, color = "primary")
)
)
),
server = function(input, output) { }
)
}
[Package bs4Dash version 2.3.3 Index]