animated_emoji 3.1.0 animated_emoji: ^3.1.0 copied to clipboard
Show beautiful, customizable animated emojis using Noto Animated Emoji
Changelog #
3.0.0 - 2023-11-18 #
Added #
-
Breaking: Added option to get the skin tone variation of an emoji. The emoji variations are not included into the list anymore.
Instead of:
AnimatedEmojis.clapDark
do:
AnimatedEmojis.clap.dark // or AnimatedEmojis.clap.withSkinTone(SkinTone.dark)
-
Web support for network emojis.
-
Added names to
AnimatedEmojiData
. -
Added more emojis.
-
Added
AnimatedEmojiDataUtil
utility class.
Changed #
-
Breaking: Changed ID format for emojis. Now the ids do not begin with
u
.fromId
andgetCamelCaseName
are still compatible with the legacy IDs beginning withu
.Instead of :
AnimatedEmojiData('u1f386');
Do:
AnimatedEmojiData('1f386',name: 'smileWithBigEyes');
-
Some emoji names may have changed
-
When
source
is not set theAnimatedEmoji
widget now tries to load the emoji from assets first, then falls back to network.
2.1.0 - 2023-10-29 #
Added #
-
fromEmojiString
function on that returns the animated emoji version on an unicode emoji (@fahidsarker) -
toUnicodeEmoji
to AnimatedEmojiData that returns the unicode emoji of this emoji. -
fromName
that returns the emoji from its camel case name.
Changed #
-
Improved error messages.
-
Made AnimatedEmojiData immutable and added equality.
Deprecated #
- Renamed
fromCode
tofromId
.
2.0.0 - 2023-05-30 #
1.0.1+2 #
- doc: Using GIF instead of WEBP because pub.dev can only show GIFs.
1.0.1+1 #
- deprecated:
simpson
skintone. Use a value ofnull
instead. - doc: Updated readme to use WEBP.
- refactor: now using very good analysis
- updated: tests
1.0.0 #
- initial release.