mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-18 17:26:01 +10:00
997 B
997 B
category, type, title
| category | type | title |
|---|---|---|
| Components | Data Entry | Switch |
Switching Selector.
When To Use
- If you need to represent the switching between two states or on-off state.
- The difference between
SwitchandCheckboxis thatSwitchwill trigger a state change directly when you toggle it, whileCheckboxis generally used for state marking, which should work in conjunction with submit operation.
API
Switch
| Property | Description | Type | Default |
|---|---|---|---|
| checked | determine whether the Switch is checked |
Boolean | false |
| defaultChecked | to set the initial state | Boolean | false |
| onChange | a callback function, can be executed when the checked state is changing | Function(checked:Boolean) | |
| checkedChildren | content to be shown when the state is checked | React Node | |
| unCheckedChildren | content to be shown when the state is unchecked | React Node | |
| size | the size of the Switch, options: default small |
String | default |