Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevenosse/flutter_emoji_feedback
A fully customizable widget to receive feedback from your users. Can be used to get user's mood or evaluate experience (and more !)
https://github.com/stevenosse/flutter_emoji_feedback
dart emoji flutter flutter-package
Last synced: 5 days ago
JSON representation
A fully customizable widget to receive feedback from your users. Can be used to get user's mood or evaluate experience (and more !)
- Host: GitHub
- URL: https://github.com/stevenosse/flutter_emoji_feedback
- Owner: stevenosse
- License: mit
- Created: 2023-02-01T19:57:23.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-24T20:45:49.000Z (4 months ago)
- Last Synced: 2024-07-25T22:05:07.750Z (4 months ago)
- Topics: dart, emoji, flutter, flutter-package
- Language: Dart
- Homepage: https://pub.dev/packages/flutter_emoji_feedback
- Size: 563 KB
- Stars: 2
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_emoji_feedback
[![pub package](https://img.shields.io/pub/v/flutter_emoji_feedback.svg)](https://pub.dartlang.org/packages/flutter_emoji_feedback)A fully customizable widget to receive feedback from your users. Can be used to get user's mood or evaluate experience (and more !)
## 🚀 Getting started
Install from pub :
```dart
$ flutter pub add flutter_emoji_feedback
```## 📔 Usage
Import flutter_emoji_feedback :
```dart
import 'package:flutter_emoji_feedback/flutter_emoji_feedback.dart';
``````dart
EmojiFeedback(
rating: 4, // Rating
animDuration: const Duration(milliseconds: 300), // Duration of the animation
curve: Curves.bounceIn, // Curve of the animation
inactiveElementScale: .5, // Scale of the inactive element
onChanged: (value) { // Callback when the user change the value of the emoji
},
// Other parameters
);
```## 📝 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
## 📄 Changelog
See [CHANGELOG.md](CHANGELOG.md) for details.
## 📄 Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request## 📄 Contact
- Twitter : [@nossesteve](https://twitter.com/nossesteve)
- GitHub : [@stevenosse](https://github.com/stevenosse)## 📄 Acknowledgments
- [flutter_svg](https://pub.dev/packages/flutter_svg)
- [collection](https://pub.dev/packages/collection)