Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1022 Bytes

Switch.md

File metadata and controls

47 lines (34 loc) · 1022 Bytes
name title route
Switch
开关
/components/Switch

Switch

开关组件。

Usage

全部引入

import { Switch } from 'beeshell';

按需引入

import { Switch } from 'beeshell/dist/components/Switch';

Examples

image

Code

详细 Code

import { Switch } from 'beeshell';

<Switch value={this.state.valueA} onChange={(value) => { this.setState({ valueA: value }) }}/>

API

Props

Name Type Required Default Description
style ViewStyle false {} 样式
value boolean false false 状态值
disabled boolean false false 是否可以切换状态
rockerSize string false 'lg' 滑块的尺寸,支持 'lg' 'sm'
activeColor string false variable.mtdBrandPrimary 打开状态颜色
onChange Function false null 值变化回调