Hi, dear Marc!
This package is a lifesaver, thank you! Normally, I needed to use an animation, a controller and all that boilerplate.
I was searching for a way to use the transform: property of the AnimatedContainer since it will save me from all that hustle. Found Matrix4Transform at the superb timing!
There isn't any issue actually but you can advertise this package by showing the animation power. And since it's chainable, I can create very complex animations.
AnimatedContainer(
duration: animationDuration,
curve: animationCurve,
transform: Matrix4Transform()
.translate(
x: 0,
y: !widget.isEditModeActive ? 0 : 40,
).matrix4,
child: widget.child,
)
Hi, dear Marc!
This package is a lifesaver, thank you! Normally, I needed to use an animation, a controller and all that boilerplate.
I was searching for a way to use the
transform:property of theAnimatedContainersince it will save me from all that hustle. Found Matrix4Transform at the superb timing!There isn't any issue actually but you can advertise this package by showing the animation power. And since it's chainable, I can create very complex animations.