react-native-country-select
Version:
🌍 React Native country picker with flags, search, TypeScript, i18n, and offline support. Lightweight, customizable, and designed with a modern UI.
18 lines (16 loc) • 584 B
text/typescript
import { ICountrySelectLanguages } from './countrySelectLanguages';
import { ICountrySelectStyle } from './countrySelectStyles';
import { IThemeProps } from './theme';
export interface ISearchInputProps {
theme?: IThemeProps;
language: ICountrySelectLanguages;
value: string;
onChangeText: (text: string) => void;
countrySelectStyle?: ICountrySelectStyle;
searchPlaceholder?: string;
searchPlaceholderTextColor?: string;
searchSelectionColor?: string;
accessibilityLabelSearchInput?: string;
accessibilityHintSearchInput?: string;
allowFontScaling?: boolean;
}