Slide 91
Slide 91 text
sizeAnimation = Tween(begin: 0.0, end: 300.0).animate(
CurvedAnimation(
parent: controller,
curve: Interval(0.0, 0.3, curve: Curves.ease),
),
),
colorAnimation =
ColorTween(begin: Colors.blue[400], end: Colors.yellow[400])
.animate(
CurvedAnimation(
parent: controller,
curve: Interval(0.3, 0.7, curve: Curves.ease),
),
),
rotateAnimation = Tween(begin: 0.0, end: 0.75).animate(
CurvedAnimation(
parent: controller,
curve: Interval(0.4, 0.7, curve: Curves.ease),
),
),
borderRadiusAnimation = BorderRadiusTween(
begin: BorderRadius.circular(0.0),
end: BorderRadius.circular(150.0),
).animate(
CurvedAnimation(
parent: controller,
curve: Interval(0.7, 0.9, curve: Curves.ease),
),
),