icons_animate

Last updated:

0 purchases

icons_animate Image
icons_animate Images
Add to Cart

Description:

icons animate

Icons Animate

This is a Flutter package to make a custom AnimatedIcon from two Icons.
This package is born to make AnimatedIcons easily available for any Icon and not only the few default ones













Features #
Here are some examples of animated icons.

Note that you can provide any Icon that is of type IconData to the animator


You can see an example of some icons being animated in the Sample Project
Getting started #
To install the package just do:
flutter pub add icons_animate
flutter pub get
copied to clipboard
OR add the dependency manually to your pubspec.yaml file:
dependencies:
icons_animate: ^0.0.2
copied to clipboard
Then depend on it in your class:
import 'package:icons_animate/icons_animate.dart';
copied to clipboard
Usage #
Here is a simple implementation:
AnimateIcons(
startIcon: Icons.add_circle,
endIcon: Icons.add_circle_outline,
size: 100.0,
controller: controller,
startTooltip: 'Icons.add_circle',
endTooltip: 'Icons.add_circle_outline',
// add this for splashColor, default is Colors.transparent means no click effect
splashColor: Colors.blueAccent.shade100.withAlpha(50),
// add this to specify a custom splashRadius
// default is Material.defaultSplashRadius (35)
splashRadius: 24,
onStartIconPress: () {
print("Clicked on Add Icon");
return true;
},
onEndIconPress: () {
print("Clicked on Close Icon");
return true;
},
duration: Duration(milliseconds: 500),
startIconColor: Colors.deepPurple,
endIconColor: Colors.deepOrange,
clockwise: false,
),
copied to clipboard
See Example Code for more info.
Issues & Feedback #
Please file an issue to send feedback or report a bug,
If you want to ask a question or suggest an idea then you can open an discussion.
Thank you!
Contributing #
Every PR is welcome.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.