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

Animate appearance and disappearance with AnimatedVisibility

Flutter Animated Visibility Widget #

Animate appearance and disappearance using pre-built effects with the AnimatedVisibility widget.

Getting Started #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  animated_visibility_widget: <latest_version>

In your library add the following import:

import 'package:animated_visibility_widget/animated_visibility_widget.dart';

Basic usage #

      AnimatedVisibility(
        visible: _isShow,
        enter: fadeIn() + scaleIn(),
        exit: fadeOut() + slideOutHorizontally(),
        child: <content to show/hide>,
      );

Demo #

Sample app demonstrates how simple the usage of the library actually is.

Bugs and Feedback #

For bugs, questions and discussions please use the Github Issues.

Credits #

animated_visibility is owned and maintained by the Canopas team. You can follow them on Twitter at @canopassoftware for project updates and releases.

29
likes
150
pub points
87%
popularity

Publisher

verified publishercanopas.com

Animate appearance and disappearance with AnimatedVisibility

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on animated_visibility