Skip to main content

๐Ÿšง CheckBox

Removed. Use one of the community packages instead.

Renders a boolean input (Android only).

This is a controlled component that requires an onValueChange callback that updates the value prop in order for the component to reflect user actions. If the value prop is not updated, the component will continue to render the supplied value prop instead of the expected result of any user actions.

Exampleโ€‹


Reference

Propsโ€‹

Inherits View Props.


disabledโ€‹

If true the user won't be able to toggle the checkbox. Default value is false.

TypeRequired
boolNo

onChangeโ€‹

Used in case the props change removes the component.

TypeRequired
functionNo

onValueChangeโ€‹

Invoked with the new value when the value changes.

TypeRequired
functionNo

testIDโ€‹

Used to locate this view in end-to-end tests.

TypeRequired
stringNo

valueโ€‹

The value of the checkbox. If true the checkbox will be turned on. Default value is false.

TypeRequired
boolNo