v1.1.0
emoji_flag_converter
一個用於將國家代碼轉換為表情符號旗幟的 Dart 庫。
18喜歡 2.8萬近 30 天下載150Pub 分數
AndroidiOSWebmacOSWindowsLinux
一個簡單的 Dart 套件,用於將兩位字母國家代碼(SG)轉換為表情符號旗幟 🇸🇬 🤟
^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!