flutter_toggle_animated

Last updated:

0 purchases

flutter_toggle_animated Image
flutter_toggle_animated Images
Add to Cart

Description:

flutter toggle animated

flutter_toggle_animated #
A Flutter package for simplifying the creation of Animated Controller and using it for types of toggling animations with minimum efforts.
Getting Started #
This package help to only focus on animating your toggle animated ui without initializing much of the logic in initState.

Usage #
INITIALIZING

ToggleController _animatedController;

@override
void initState() {
_animatedController = ToggleController(
vsync: this, animationDuration: const Duration(milliseconds: 500))
..addListener(() {
setState(() {});
});
super.initState();
}

copied to clipboard
Properties #

CurrentAnimationState state // notifies the Current animation state

double currentPercentOpen // notifies the Current animation value

copied to clipboard
Methods #

// returns boolean for checking if the current animation is running forward.
isOpening

// returns boolean for checking if the current animation is completed.
isOpen

// returns boolean for checking if the current animation is dismissed.
isClosed

// returns boolean for checking if the current animation is running in reverse direction.
isClosing

// push animation to run in forward play
open

// push animation to run in reverse play
close

// Toggle the current animation
toggle

copied to clipboard
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.

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.