Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/changjoo-park/flutter_emojicloud
https://github.com/changjoo-park/flutter_emojicloud
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/changjoo-park/flutter_emojicloud
- Owner: ChangJoo-Park
- License: mit
- Created: 2022-08-05T14:06:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T15:08:40.000Z (over 2 years ago)
- Last Synced: 2024-10-12T09:09:31.515Z (about 1 month ago)
- Language: Dart
- Size: 7.91 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Flutter EmojiCloud
A Flutter package using vector emoji from [emojicloud](https://github.com/alohe/emojicloud).
This pakcage has no any other dependencies. It does not break your [flutter_svg](https://pub.dev/packages/flutter_svg) dependency.
![](demo.gif)
## Installation
```
flutter pub add emojis
flutter pub add flutter_svg
```## Use with flutter_svg
```
SvgPicture.asset(
EmojiCloud.airplane,
package: 'emojicloud', // this line is required. :)
width: 200,
height: 200,
),
```