![pub package](https://img.shields.io/pub/v/[PACKAGE NAME ON PUB].svg) [![Build status](URL TO REPO)](URL TO GITHUB ACTIONS)
A set of common implicit animation widgets to expand upon the default flutter animation widgets
Figma Design that defines this component (only accessible for Iconica developers): https://www.figma.com/file/4WkjwynOz5wFeFBRqTHPeP/Iconica-Design-System?type=design&node-id=356%3A3329&mode=design&t=XulkAJNPQ32ARxWh-1
PLATFORM
This package works on all platforms that are supported by Flutter.
Here is a list of available widgets.
A widget that creates a swing animation whenever the amount of notifications goes up.
example:
IconButton(
onPressed: () {
setState(() {
notificationCount++;
});
},
icon: const Icon(Icons.add),
),
AnimatedNotificationBell(
notificationCount: notificationCount,
style: const AnimatedNotificationBellStyle(),
iterations: notificationCount,
duration: const Duration(
milliseconds: 1000,
),
),
IconButton(
onPressed: () {
setState(() {
notificationCount--;
});
},
icon: const Icon(Icons.remove),
),
Please file any issues, bugs or feature request as an issue on our GitHub page. Commercial support is available if you need help with integration with your app or services. You can contact us at support@iconica.nl.
If you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please carefully review our contribution guide and send us your pull request.
This flutter_animated_widgets for Flutter is developed by Iconica. You can contact us at support@iconica.nl