Skip to contents

Creates a shiny.fluent card. Adapted from make_card to render correctly shinyAce div.

Usage

make_shiny_ace_card(
  title = character(),
  content = character(),
  size = 12,
  style = ""
)

Arguments

title

Title of the card (character)

content

Content of the card (character)

size

Size of a card (integer)

style

CSS code to custom the card (character)

Value

Shiny UI elements / HTML code

Examples

if (FALSE) {
make_shiny_ace_card(title = "Introduction", content = "This is the text of my introduction card", size = 12)
}