flutter_animated_widgets (0.3.2)

Published 2025-02-13 18:52:04 +01:00 by freek

Installation

dart pub add flutter_animated_widgets:0.3.2 --hosted-url=

About this package

A set of commonly used specific implicit animated widgets as addition on top of the default animated widgets

![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

Details
Pub
2025-02-13 18:52:04 +01:00
9
239 KiB
Assets (1)
0.3.2.tar.gz 239 KiB
Versions (1) View all
0.3.2 2025-02-13