FLUTTER ECOSYSTEM

RoundedInfinity/animated_emoji

애니메이션 이모지를 사용하기 위한 플러터 패키지

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 개
  • flutter{"sdk":"flutter"}
  • lottie^3.5.1
  • flutter_test개발 의존성{"sdk":"flutter"}
  • very_good_analysis개발 의존성^8.0.0

원본 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.