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.
20 lines (18 loc) • 697 B
text/typescript
import { IThemeProps } from './theme';
import { ICountrySelectStyle } from './countrySelectStyles';
import { ICountrySelectLanguages } from './countrySelectLanguages';
import { IListItem } from './itemList';
export interface AlphabeticFilterProps {
theme?: IThemeProps;
activeLetter: string | null;
onPressLetter: (index: number) => void;
language: ICountrySelectLanguages;
countries: IListItem[];
allCountriesStartIndex: number;
countrySelectStyle?: ICountrySelectStyle;
accessibilityLabelAlphabetFilter?: string;
accessibilityHintAlphabetFilter?: string;
accessibilityLabelAlphabetLetter?: string;
accessibilityHintAlphabetLetter?: string;
allowFontScaling?: boolean;
}