mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2.7 KiB
2.7 KiB
id, title, original_id
| id | title | original_id |
|---|---|---|
| version-0.50-checkbox | checkbox | checkbox |
CheckBox #
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.
@keyword checkbox @keyword toggle
Props #
disabled?: bool #
If true the user won't be able to toggle the checkbox. Default value is false.
onChange?: function #
Used in case the props change removes the component.
onValueChange?: function #
Invoked with the new value when the value changes.
testID?: string #
Used to locate this view in end-to-end tests.
value?: bool #
The value of the checkbox. If true the checkbox will be turned on. Default value is false.
Improve this page by sending a pull request!