react-native-picker-modal-view
Version:
React Native Picker Modal View
14 lines (12 loc) • 321 B
text/typescript
// Global Imports
import { TextInputProps } from 'react-native';
export interface ISearch {
placeholderTextColor: string;
onClose: () => void;
onBackRequest?: () => void;
forceSelect: boolean;
setText: (text: string) => void;
searchText: string;
SearchInputProps?: TextInputProps;
backButtonDisabled?: boolean
}