Checkbox
API
Props
| Declaration | Description | Type | Default |
|---|---|---|---|
| value | Default state value | Boolean | false |
| onValueChange | Function to be called when value changes | Function(value: Boolean) | - |
Style names
Checkbox doesn’t have specific style names.
Note You can change the active border color by overwriting the
checkboxActiveColorvariable. Read more about this here.
JSX Declaration
<Checkbox
value={this.state.checkbox}
onValueChange={(value) => console.log('Checkbox value', value) }
/>
Snack Example
Coming soon.