shinymaterial (version 1.2.0)

material_card: Create a card that will contain UI content

Description

UI content can be placed in cards to organize items on a page.

Usage

material_card(title, ..., depth = NULL, color = NULL, divider = FALSE)

Arguments

title

String. The title of the card

...

The UI elements to place in the card

depth

Integer. The amount of depth of the card. The value should be between 0 and 5. Leave empty for the default depth.

color

String. The color of the card background. Leave empty for the default color. Visit https://materializecss.com/color.html for a list of available colors.

divider

logical. Should there be a divider element between card title and card content?

Examples

Run this code
# NOT RUN {
material_card(
  title = "Example Card",
  depth = 5,
  shiny::tags$h5("Card Content")
)
# }

Run the code above in your browser using DataLab