mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
77b78a9389
* Unify name of ReactNode type in document * Lowser all string type name * Lowercase all number type name * Lowercase all boolean type name * Unify array type * Lowercase all object type name * Unify mutilple types
1011 B
1011 B
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
Switch
andCheckbox
is thatSwitch
will trigger a state change directly when you toggle it, whileCheckbox
is 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 | string|ReactNode | |
unCheckedChildren | content to be shown when the state is unchecked | string|ReactNode | |
size | the size of the Switch , options: default small |
string | default |