animation_wrappers 2.0.0 copy "animation_wrappers: ^2.0.0" to clipboard
animation_wrappers: ^2.0.0 copied to clipboard

outdated

Animation Wrapper widgets, just wrap the child to be animated with this wrapper widget and that child will be animated.

animation_wrappers #

Animation Wrapper widgets, just wrap the child to be animated with this wrapper widget and that child will be animated. It also contains animated bottom navigation bars.

Getting Started #

To use this package, add animation_wrappers as a dependency in your pubspec.yaml file.

🤩 😍 ** Major Update ** 😍 🤩 #

See example for all animation wrappers and animated text bottom bar

Add dependency #

dependencies:
  animation_wrappers: ^2.0.0

Import #

import 'package:animation_wrappers/animation_wrappers.dart';

Usage: FadedScaleAnimation #

FadedScaleAnimation(
    Container(
        height: 200,
        width: 200,
        color: Colors.blue,
    ),
),

Usage: FadedSlideAnimation #

FadedSlideAnimation(
    Container(
        height: 200,
        width: 200,
        color: Colors.blue,
    ),
    beginOffset: Offset(0.5, 2),
    endOffset: Offset(0.5, 1),
),

Usage: FadeAnimation #

FadeAnimation(
    child: Container(
        height: 200,
        width: 200,
        color: Colors.blue,
    ),
),

Usage: ScaleAnimation #

ScaleAnimation(
    child: Container(
        height: 200,
        width: 200,
        color: Colors.blue,
    ),
),

Many more animation wrappers and animated bottom bars will be added soon..!

Made with ❤️ by Jagrit

35
likes
90
pub points
94%
popularity

Publisher

unverified uploader

Animation Wrapper widgets, just wrap the child to be animated with this wrapper widget and that child will be animated.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on animation_wrappers