Skip to content

A set of common implicit animation widgets to expand upon the default flutter animation widgets

License

Notifications You must be signed in to change notification settings

Iconica-Development/flutter_animated_widgets

Repository files navigation

![pub package](https://img.shields.io/pub/v/[PACKAGE NAME ON PUB].svg) [![Build status](URL TO REPO)](URL TO GITHUB ACTIONS) style: effective dart

flutter_animated_widgets

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

Setup

PLATFORM

This package works on all platforms that are supported by Flutter.

How to use

Features

Here is a list of available widgets.

1. AnimatedNotificationBell

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),
),

Issues

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.

Want to contribute

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.

Author

This flutter_animated_widgets for Flutter is developed by Iconica. You can contact us at support@iconica.nl

About

A set of common implicit animation widgets to expand upon the default flutter animation widgets

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages