Mindinventory / animated_icons

This package supports an animated icon with some customization. It includes an icon type, animation as well as onTap() parameters through the user to get the values as per the requirements.
https://www.mindinventory.com/flutter-app-development.php
MIT License
17 stars 10 forks source link

Size capped #7

Closed gia-guar closed 7 months ago

gia-guar commented 1 year ago

I am using an Animated Icon for a loading screen and the size seems to be capped at some value: Here:

AnimateIcon(
    key: UniqueKey(),
    onTap: () {},
    iconType: IconType.continueAnimation,
    height: 100,
    width: 100,
    color:Colors.white,
    animateIcon: AnimateIcons.download
)

Increasing the height and width more only adds padding to the icon but it does not make it bigger

(the opposite problem does not show: I can have smaller icons)