v3.2.1animated_emoji
Noto 애니메이션 이모티콘을 사용하여 아름답고 사용자 정의 가능한 애니메이션 이모티콘 표시
애니메이션 이모지를 사용하기 위한 플러터 패키지
{"sdk":"flutter"}^3.5.1{"sdk":"flutter"}^8.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
🚀
Provides over 600 animated emojis for your app.
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, // 👏🏿
),
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
Contributions are always welcome 🔥
Check out the the animated_emoji_generator used to generate the contents of this package.
This package uses Noto Animated Emoji which is licensed under CC BY 4.0.