ant-design/components/switch/index.en-US.md

27 lines
1011 B
Markdown
Raw Normal View History

2016-07-26 09:17:46 +08:00
---
category: Components
type: Data Entry
2016-07-26 09:17:46 +08:00
title: Switch
---
Switching Selector.
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-26 09:17:46 +08:00
- If you need to represent the switching between two states or on-off state.
- The difference between `Switch` and `Checkbox` is that `Switch` will trigger a state change directly when you toggle it, while `Checkbox` 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 |
2016-07-26 09:17:46 +08:00
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 |