Originally maintained by hadi-codes, extended to support the newest set of twemoji.
Twemoji for Flutter, supports SVG
Based on jdecked's fork of twemoji (v14.1.2)
Twemoji to display single emojis
Twemoji(
emoji: '🍕',
height: 50,
width: 50,
)TwemojiText returns a widget with rendered text with twitter emojis
TwemojiText(
text: 'wow 💻👩💻👨💻 ',
),TwemojiTextSpan with RichText and it will render the text with twitter Emojies
RichText(
text: TwemojiTextSpan(
text: 'Text 🍕🍔🌭🍿🧂🥓🥨🥐🍞🥞🥞',
style: Theme.of(context).textTheme.headline6,
),
)