Skip to content

Checkbox

Checkboxes allow users to select one or more items from a set.

demonstration

Usage

python
from material_ui import Checkbox

checkbox = Checkbox()

API

Properties

NameTypeDefaultDescription
selectedboolFalseWhether the checkbox is checked.
indeterminateboolFalseWhether the checkbox is in an indeterminate state.

Signals

NameArgumentsDescription
on_changevalue: boolEmitted when the user toggles the checkbox.