import { StyleProp, ViewStyle } from 'react-native'; /** * DbSwitch 组件属性 */ export interface DbSwitchProps { /** 开关状态(受控模式) */ value?: boolean; /** 默认开关状态(非受控模式) */ defaultValue?: boolean; /** 状态改变回调 */ onChange?: (value: boolean) => void; /** 是否禁用 */ disabled?: boolean; /** 开启时的背景颜色 */ activeColor?: string; /** 关闭时的背景颜色 */ inactiveColor?: string; /** 滑块颜色 */ thumbColor?: string; /** 开关宽度 */ width?: number; /** 开关高度 */ height?: number; /** 滑块大小(直径) */ thumbSize?: number; /** 滑块边距 */ thumbMargin?: number; /** 自定义容器样式 */ style?: StyleProp; /** 自定义滑块样式 */ thumbStyle?: StyleProp; }