material_card {shinymaterial} | R Documentation |
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
material_card(
title = "Example Card",
depth = 5,
shiny::tags$h5("Card Content")
)
[Package shinymaterial version 1.2.0 Index]