@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
15 lines (14 loc) • 379 B
TypeScript
import type { ReactNode } from 'react';
export declare type PopupPickerProps = {
onOk?: () => void;
onDismiss?: () => void;
onClose?: () => void;
title?: ReactNode;
visible?: boolean;
okText?: ReactNode;
dismissText?: ReactNode;
children?: ReactNode;
styles: any;
actionTextUnderlayColor?: string;
actionTextActiveOpacity?: number;
};