unicode-emoji-dart
v1.0.3
Published
This library takes the latest available emoji dataset ([v15.1](https://www.unicode.org/reports/tr51/proposed.html#emoji_data)) from Unicode and generates Dart objects from it. It uses the following libraries to compile the dataset:
Downloads
9
Readme
Unicode Emoji Dart
This library takes the latest available emoji dataset (v15.1) from Unicode and generates Dart objects from it. It uses the following libraries to compile the dataset:
emojilib
: provides a list of keywords for every emojiunicode-emoji-json
: provides emoji data in JSON formatemoji-regex
: a regular expression to match all emoji symbols and sequences
Generate Dart files
As repo clone
git clone https://github.com/alfalcon90/unicode-emoji-dart.git
Clone this repo.npm install
Install dependencies.npm run generate
Check the/export
folder once the script is done.
As npm dependency
npm add unicode-emoji-dart
Add this package.npm add -D @types/node typescript
Add Typescript devDependencies if not done already.npm explore unicode-emoji-dart -- npm run generate
Check thenode_modules/unicode-emoji-dart/export
folder once the script is done.
Usage
// Emoji Map
emojis.length; // 1870 emojis
// Emoji class
final emoji = emojis['🇨🇺']!;
emoji.char; // '🇨🇺'
emoji
.keywords; // ['flag_cuba','cu','flag','nation','country','banner','cuba']
emoji.name; // 'flag Cuba'
emoji.slug; // 'flag_cuba'
emoji.group; // EmojiGroup.flags
emoji.emojiVersion; // 2.0
emoji.unicodeVersion; // 2.0
emoji.skinToneSupport; // false
emoji.skinToneSupportUnicodeVersion; // null
// Equality
final other = emojis['🇺🇸']!;
emoji == other; // false
// Regex
regex.hasMatch('Loud noises! 📣'); // true
Unicode License Agreement
https://www.unicode.org/license.html