quick-picker
Version:
A plug and Play picker for React Native
25 lines (24 loc) • 616 B
TypeScript
import * as React from 'react';
import { Animated } from 'react-native';
import { Item } from './PickerStore';
interface P {
onChange: any;
getRef: (androidPicker: AndroidPicker) => void;
date: Date;
item: Item;
onCancel: () => void;
}
export default class AndroidPicker extends React.Component<P> {
state: {
isOpen: boolean;
opacity: Animated.Value;
windowOpacity: Animated.Value;
date: Date;
item: null;
};
componentDidMount(): void;
_animateOpen: () => void;
_animateClose: () => void;
render(): JSX.Element | null;
}
export {};