flutter_emoji 2.0.0 copy "flutter_emoji: ^2.0.0" to clipboard
flutter_emoji: ^2.0.0 copied to clipboard

outdated

👉 A light-weight Emoji 📦 for Flutter with all up-to-date emojis 😄. Made from 💯% ☕ with ❤️!

example/README.md

Examples #

There are two main classes you need to know to handle Emoji text: Emoji and EmojiParser.

Basically, you need to initialize an instance of EmojiParser.

var parser = EmojiParser();
var coffee = Emoji('coffee', '☕');
var heart  = Emoji('heart', '❤️');

// Get emoji info
var emojiHeart = parser.info('heart');
print(emojiHeart); '{name: heart, full: :heart:, code: ❤️}'

// Check emoji equality
heart == emojiHeart;  // returns: true
heart == emojiCoffee; // returns: false

// Get emoji by name or code
emoji.get('coffee');   // returns: Emoji{name="coffee", full=":coffee:", code="☕"}
emoji.get(':coffee:'); // returns: Emoji{name="coffee", full=":coffee:", code="☕"}

emoji.hasName('coffee'); // returns: true
emoji.getName('coffee'); // returns: Emoji{name="coffee", full=":coffee:", code="☕"}

emoji.hasEmoji('❤️'); // returns: true
emoji.getEmoji('❤️'); // returns: Emoji{name="heart", full=":heart:", code="❤️"}

emoji.emojify('I :heart: :coffee:'); // returns: 'I ❤️ ☕'
emoji.unemojify('I ❤️ ☕'); // returns: 'I :heart: :coffee:'
186
likes
0
pub points
97%
popularity

Publisher

verified publisherpetehouston.com

👉 A light-weight Emoji 📦 for Flutter with all up-to-date emojis 😄. Made from 💯% ☕ with ❤️!

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_emoji