UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

25 lines (24 loc) 648 B
import React from 'react'; import { ColorValue } from 'react-native'; export interface SwitchPropsType { prefixCls?: string; checked?: boolean; defaultChecked?: boolean; color?: string; trackColor?: { false?: ColorValue; true?: ColorValue; }; thumbColor?: ColorValue; thumbTintColor?: ColorValue; disabled?: boolean; loading?: boolean; title?: string; checkedChildren?: string | React.ReactNode; unCheckedChildren?: string | React.ReactNode; onChange?: (checked: boolean) => void | Promise<void>; /** * @deprecated */ onPress?: (checked: boolean) => void; }