UNPKG

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.

9 lines (7 loc) 269 B
import {ICountrySelectLanguages, ICountry} from '../interface'; export const getCountryNameInLanguage = ( country: ICountry, language: ICountrySelectLanguages = 'eng', ): string => { return country.translations[language]?.common || country.name.common || ''; };