You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Creates a simple Checkbox component with a text label.
75
+
76
+
Args:
77
+
label: Text label for checkbox
78
+
on_change: Event emitted when the checkbox's `checked` value changes.
79
+
on_indeterminate_change: Event emitted when the checkbox's `indeterminate` value changes.
80
+
label_position: Whether the label should appear after or before the checkbox. Defaults to 'after'
81
+
disable_ripple: Whether the checkbox has a ripple.
82
+
tab_index: Tabindex for the checkbox.
83
+
color: Palette color of the checkbox.
84
+
checked: Whether the checkbox is checked.
85
+
disabled: Whether the checkbox is disabled.
86
+
indeterminate: Whether the checkbox is indeterminate. This is also known as "mixed" mode and can be used to represent a checkbox with three states, e.g. a checkbox that represents a nested list of checkable items. Note that whenever checkbox is manually clicked, indeterminate is immediately set to false.
87
+
key: Unique identifier for this component instance.
0 commit comments