Switch component. The switch can be toggled both by dragging and tapping. Will automatically displays a Material Design switch on Android devices.
A switch is an UI element that can be used to toggle between two states.
The state of a switch in Onsen UI can be changed both by dragging the knob and by tapping on the switch.
To make the switch enabled by default you can use the checked
prop just like with radio buttons and checkboxes.
<Switch checked={this.state.checked} onChange={this.handleChange} />
To disable the switch the disabled
prop is used.
Name | Type | Description |
---|---|---|
modifier | String | The appearance of the switch. Optional. |
disabled | Whether the switch is be disabled. Optional. | |
checked | Whether the switch is checked. Optional. | |
input-id | String |
Specify the id attribute of the inner <input> element. This is useful when using <label for="..."> elements.
Optional.
|
Name | Description |
---|---|
checked |
This value is true if the switch is checked.
|
value | The current value of the input. |
disabled | Whether the element is disabled or not. |
checkbox | The underlying checkbox element. |
Name | Description |
---|---|
material | Material Design switch |
Signature | Description |
---|---|
focus() | Focuses the switch. |
blur() | Removes focus from the switch. |
Focuses the switch.
Removes focus from the switch.
Name | Description |
---|---|
change | Fired when the switch is toggled. |
Fired when the switch is toggled.
Name | Type | Description |
---|---|---|
event | Object | Event object. |
event.switch | Object | Switch object. |
event.value | Boolean | Current value. |
event.isInteractive | Boolean | True if the change was triggered by the user clicking on the switch. |
If you have any questions, use our Community Forum or talk to us on Discord chat. The Onsen UI team and your peers in the community will work together to help solve your issues.
For bug reports and feature requests use our GitHub Issues page.