animate_icons 0.0.3 copy "animate_icons: ^0.0.3" to clipboard
animate_icons: ^0.0.3 copied to clipboard

outdated

This is a plugin with the help of which you can animate between any two icons like we do in AnimatedIcon widget given to us by default. We have a very few options to us with the default AnimatedIcons [...]

Animate Any two icons with this plugin #

Demo: #

Demo 1 Demo 2 Demo 3

How to use: #

All plugin in your pubspec.yaml

animate_icons:

Make the import:

import 'package:animate_icons/animate_icons.dart';

Use the following widget:

AnimateIcons(
    startIcon: Icons.add,
    endIcon: Icons.close,
    size: 60.0,
    onStartIconPress: () {
        print("Clicked on Add Icon");
    },
    onEndIconPress: () {
        print("Clicked on Close Icon");
    },
    duration: Duration(milliseconds: 500),
    color: Theme.of(context).primaryColor,
    clockwise: false,
),
204
likes
0
pub points
94%
popularity

Publisher

unverified uploader

This is a plugin with the help of which you can animate between any two icons like we do in AnimatedIcon widget given to us by default. We have a very few options to us with the default AnimatedIcons but with this pacakge you can animate any two icons you want, provided by any Icon package.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on animate_icons