FLUTTER ECOSYSTEM

RoundedInfinity/animated_emoji

一个用于使用动画表情符号的 Flutter 包

animated_emoji 项目封面
Stars
33
Forks
7
最近推送(UTC)
2026年7月26日
项目状态
未归档
Ruben Gullatz GitHub avatar
GITHUB User

Ruben Gullatz ↗

B.Sc. Student in Medical Informatics

Germany
语言DartC++CMakeCHTMLShellSwiftPythonObjective-CJavaKotlin

技术话题

此仓库发布的插件

使用的依赖

依赖清单 4 项

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

🚀

Animated Emoji

style: very good analysis

Provides over 600 animated emojis for your app.

Usage

Just use the AnimatedEmoji widget anywhere in your application and choose an emoji.

const AnimatedEmoji(
  AnimatedEmojis.rocket, // 🚀
),

Configure the widget to your needs.

AnimatedEmoji(
  AnimatedEmojis.clap, // 👏
  size: 128,
  repeat: false,
),

Some emojis also support variations in skin color.

const AnimatedEmoji(
  AnimatedEmojis.clap.dark, // 👏🏿
),
Offline support

You can also add emojis to your assets for offline support.

First, import the emoji to your pubspec.yaml. The names can be found here.

You need to import the specific skin tones separately to use them (add the suffix to your imports, e.g. Dark, MediumLight, ...)

...
flutter:
  assets:
    - packages/animated_emoji/lottie/rocket.json
    - packages/animated_emoji/lottie/clap.json 
    # Import a skin tone variation.
    - packages/animated_emoji/lottie/clapDark.json

Contributing

Contributions are always welcome 🔥

Check out the the animated_emoji_generator used to generate the contents of this package.

Additional information

This package uses Noto Animated Emoji which is licensed under CC BY 4.0.