
Last chance! 50% off unlimited learning
Sale ends in
Build a Framework7 badge
f7Badge(..., color = NULL)
Badge content. Avoid long text.
Badge color: see here for valid colors https://framework7.io/docs/badge.html.
# NOT RUN {
if(interactive()){
library(shiny)
library(shinyMobile)
colors <- getF7Colors()
shiny::shinyApp(
ui = f7Page(
title = "Badges",
f7SingleLayout(
navbar = f7Navbar(title = "f7Badge"),
f7Block(
strong = TRUE,
lapply(seq_along(colors), function(i) {
f7Badge(colors[[i]], color = colors[[i]])
})
)
)
),
server = function(input, output) {}
)
}
# }
Run the code above in your browser using DataLab