Examples
- States
- With Labels

Different checkbox states.
Properties
Required
The current checked state of the checkbox.
true
represents checked, false
represents unchecked.Callback function called when the checkbox state changes. Receives the new boolean value.
Content
The text label displayed next to the checkbox.
Additional descriptive text displayed below the label. Useful for providing context or additional information about the option.
State
Whether the checkbox is in an indeterminate state. When true, displays a minus icon regardless of the
isChecked
value. Commonly used for “select all” checkboxes when only some items are selected.Whether the checkbox is interactive. When false, the checkbox appears with reduced opacity and doesn’t respond to user interactions.
Best Practices
- Combine with
NeoHaptics
in theonChanged
callback for enhanced user experience on supported devices.
Integration Notes
- When a
label
and/ordescription
is provided, the entire area is clickable, not just the checkbox itself.