2.0.2 • Published 8 months ago

react-native-country-flag v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

react-native-country-flag

This is a react-native package to display every 254 country flag with the ISO 3166-1 alpha-2 Standard!

preview image

NPM Npm package total downloads

📖 Table of Contents

 

⬇️ Install package

npm install --save react-native-country-flag

 

💾 Data

Data required for the countryflag component to work has been completely decoupled from the library. That gives developers the flexibility to better control their app bundle size and let them choose how and when this data is loaded. Data can be:

Usage with remotely Fetched flags

  • Pros: Data fetched only when needed, does not affect your app bundle size
  • Cons: Network latency, doesn’t work offline
import CountryFlag from "react-native-country-flag";

<CountryFlag isoCode="de" size={25} />

Usage with flags directly Bundled into your codebase

🚧 Note: Still in progress (probely available in v2.1)

  • Pros: Component renders instantly, data is available offline
  • Cons: Does affect your app bundle size
npm install --save react-native-country-flag/data
import CountryFlag from "react-native-country-flag";
import flags from "react-native-country-flag/data";

<CountryFlag isoCode="de" size={25} flags={flags} />

 

🚩 Flag component (props)

import CountryFlag from "react-native-country-flag";

<CountryFlag isoCode="de" size={25} />

You can only use the ISO 3166-1 alpha-2 Standard for the isoCode property.

PropTypeDesciption
isoCodeStringDefine the country flag with the ISO 3166-1 alpha-2 Standard.
sizeIntegerDefine the size from the country flag.
styleStylesheetCustomize the style from the CountryFlag component.
flagsOptional: pass bundeled flags CountryFlag component.

 

📝 License

MIT © Yannis Hofmann

1.2.0

8 months ago

1.2.1

8 months ago

2.0.2

8 months ago

2.0.1

8 months ago

2.0.0

8 months ago

1.1.9

2 years ago

1.1.8

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

3 years ago

1.1.1

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.0

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago