v1.1.0
emoji_flag_converter
国コードを絵文字の国旗に変換するためのDartライブラリ。
18いいね 2.8万30日間ダウンロード150Pub ポイント
AndroidiOSWebmacOSWindowsLinux
アルファ2国コード(SG)を絵文字の国旗に変換するシンプルなDartパッケージ 🇸🇬 🤟
^1.17.8以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
A simple dart package to convert alpha 2 country codes (SG) to emoji flags 🇸🇬 🤟
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!