INNER CODE UNIT · Dart
AnimationTransition
RatelHub/rflutter_alert · lib/src/animation_transition.dart:14
class AnimationTransition {
/// Slide animation, from right to left (SlideTransition)
static fromRight(Animation<double> animation,
Animation<double> secondaryAnimation, Widget child) {
return SlideTransition(
position: Tween<Offset>(
begin: const Offset(1.0, 0.0),
end: Offset.zero,
).animate(animation),
child: child,
);
}
/// Slide animation, from left to right (SlideTransition)
static fromLeft(Animation<double> animation,
Animation<double> secondaryAnimation, Widget child) {
return SlideTransition(
position: Tween<Offset>(