material_checkbox: Create a shinymaterial checkbox

Description Usage Arguments See Also Examples

View source: R/shiny-material-checkbox.R

Description

Build a shinymaterial checkbox. The value is a boolean (TRUE if checked, FALSE if not checked).

Usage

1
material_checkbox(input_id, label, initial_value = FALSE, color = NULL)

Arguments

input_id

String. The input identifier used to access the value.

label

String. The checkbox label.

initial_value

Boolean. Is the checkbox initially checked?

color

String. The color of the check. Leave empty for the default color. Visit https://materializecss.com/color.html for a list of available colors. This input requires using color hex codes, rather than the word form. E.g., "#ef5350", rather than "red lighten-1".

See Also

update_material_checkbox

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
material_checkbox(
  input_id = "example_checkbox",
  label = "Checkbox",
  initial_value = TRUE,
  color = "#ef5350"
)

## End(Not run)

ericrayanderson/shinymaterial documentation built on Oct. 9, 2020, 5:21 p.m.