@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
14 lines (13 loc) • 431 B
TypeScript
import { StyleProp, ViewStyle } from "react-native";
export declare type PickerProps = {
disabled?: boolean;
selectedValue?: any;
onValueChange?: (value: any) => void;
itemStyle?: StyleProp<ViewStyle>;
indicatorStyle?: StyleProp<ViewStyle>;
indicatorClassName?: string;
defaultSelectedValue?: any;
style?: StyleProp<ViewStyle>;
onScrollChange?: (value: any) => void;
noAnimate?: boolean;
};