FLUTTER ECOSYSTEM

flikkr/emoji_flag_converter

A simple dart package to convert alpha 2 country codes (SG) to emoji flags 🇸🇬 🤟

emoji_flag_converter project cover
Stars
0
Forks
2
Last push (UTC)
Feb 3, 2025
Project status
Active
Kazymir Rabier GitHub avatar
GITHUB User

Kazymir Rabier ↗

I like building stuff.

@AikidoSec Singapore
LanguagesDart

Packages published by this repository

Dependencies used

Dependency list 1 items
  • testDevelopment^1.17.8

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

🏴 emoji_flag_converter 🏳️

A simple dart package to convert alpha 2 country codes (SG) to emoji flags 🇸🇬 🤟

Usage

Import the class into your dart file.

import 'package:emoji_flag_converter/emoji_flag_converter.dart';

Then you can call it in your code like this to get the emoji flag in return.

String convertToEmoji(String countryCode) {
  return EmojiConverter.fromAlpha2CountryCode(code);
}

And that's it!