Created
November 8, 2020 21:49
-
-
Save fleepgeek/aacc7e956debb2b2a7b5b596575941f0 to your computer and use it in GitHub Desktop.
Animated IndexedStack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class AnimatedIndexedStack extends StatefulWidget { | |
final int index; | |
final List<Widget> children; | |
const AnimatedIndexedStack({ | |
Key key, | |
this.index, | |
this.children, | |
}) : super(key: key); | |
@override | |
_AnimatedIndexedStackState createState() => _AnimatedIndexedStackState(); | |
} | |
class _AnimatedIndexedStackState extends State<AnimatedIndexedStack> | |
with SingleTickerProviderStateMixin { | |
AnimationController _controller; | |
Animation<double> _animation; | |
int _index; | |
@override | |
void initState() { | |
_controller = AnimationController( | |
vsync: this, | |
duration: Duration(milliseconds: 150), | |
); | |
_animation = Tween(begin: 0.0, end: 1.0).animate( | |
CurvedAnimation( | |
parent: _controller, | |
curve: Curves.ease, | |
), | |
); | |
_index = widget.index; | |
_controller.forward(); | |
super.initState(); | |
} | |
@override | |
void didUpdateWidget(AnimatedIndexedStack oldWidget) { | |
super.didUpdateWidget(oldWidget); | |
if (widget.index != _index) { | |
_controller.reverse().then((_) { | |
setState(() => _index = widget.index); | |
_controller.forward(); | |
}); | |
} | |
} | |
@override | |
void dispose() { | |
_controller.dispose(); | |
super.dispose(); | |
} | |
@override | |
Widget build(BuildContext context) { | |
return AnimatedBuilder( | |
animation: _animation, | |
builder: (context, child) { | |
return Opacity( | |
opacity: _controller.value, | |
child: Transform.scale( | |
scale: 1.015 - (_controller.value * 0.015), | |
child: child, | |
), | |
); | |
}, | |
child: IndexedStack( | |
index: _index, | |
children: widget.children, | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment