FavAnimation.dart 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. import 'package:flutter/material.dart';
  2. class AnimateFav extends StatefulWidget {
  3. AnimateFav({Key key, this.size}) : super(key: key);
  4. final double size;
  5. _AnimateFavState createState() => _AnimateFavState();
  6. }
  7. class _AnimateFavState extends State<AnimateFav>
  8. with TickerProviderStateMixin {
  9. AnimationController _controller_1;
  10. AnimationController _controller_2;
  11. Animation<double> _animation_1;
  12. Animation<double> _animation_2;
  13. Animation<double> curAnimation;
  14. double rpx;
  15. @override
  16. void initState() {
  17. super.initState();
  18. _controller_1 =
  19. AnimationController(vsync: this, duration: Duration(milliseconds: 300));
  20. _controller_2 =
  21. AnimationController(vsync: this, duration: Duration(milliseconds: 200));
  22. _animation_1 = Tween(begin: 0.0, end: 1.3).animate(_controller_1)
  23. ..addStatusListener((status) {
  24. if (status == AnimationStatus.completed) {
  25. _controller_2.forward(from: 0);
  26. setState(() {
  27. curAnimation = _animation_2;
  28. });
  29. }
  30. })
  31. ..addListener(() {
  32. setState(() {});
  33. });
  34. _animation_2 = Tween(begin: 1.3, end: 1.0).animate(_controller_2)
  35. ..addListener(() {
  36. setState(() {});
  37. });
  38. curAnimation = _animation_1;
  39. _controller_1.forward(from: 0);
  40. }
  41. @override
  42. Widget build(BuildContext context) {
  43. rpx = MediaQuery.of(context).size.width / 750;
  44. return Center(
  45. child: Icon(
  46. Icons.favorite,
  47. size: widget.size * curAnimation.value,
  48. color: Colors.redAccent,
  49. ));
  50. }
  51. }
  52. class AnimatedUnFav extends StatefulWidget {
  53. AnimatedUnFav({Key key,@required this.size}) : super(key: key);
  54. final double size;
  55. _AnimatedUnFavState createState() => _AnimatedUnFavState();
  56. }
  57. class _AnimatedUnFavState extends State<AnimatedUnFav> with TickerProviderStateMixin {
  58. AnimationController _controller_1;
  59. AnimationController _controller_2;
  60. Animation<double> _animation_1;
  61. Animation<double> _animation_2;
  62. Animation<double> curAnimation;
  63. Color curColor;
  64. @override
  65. void initState() {
  66. super.initState();
  67. curColor=Colors.redAccent;
  68. _controller_1 =
  69. AnimationController(vsync: this, duration: Duration(milliseconds: 100));
  70. _controller_2 =
  71. AnimationController(vsync: this, duration: Duration(milliseconds: 100));
  72. _animation_1 = Tween(begin: 1.0, end: 1.2).animate(_controller_1)
  73. ..addStatusListener((status) {
  74. if (status == AnimationStatus.completed) {
  75. _controller_2.forward(from: 0);
  76. setState(() {
  77. curAnimation = _animation_2;
  78. curColor=Colors.grey[100];
  79. });
  80. }
  81. })
  82. ..addListener(() {
  83. setState(() {});
  84. });
  85. _animation_2 = Tween(begin: 1.2, end: 1.0).animate(_controller_2)
  86. ..addListener(() {
  87. setState(() {});
  88. });
  89. curAnimation = _animation_1;
  90. _controller_1.forward(from: 0);
  91. }
  92. @override
  93. Widget build(BuildContext context) {
  94. // rpx = MediaQuery.of(context).size.width / 750;
  95. return Center(
  96. child: Icon(
  97. Icons.favorite,
  98. size: widget.size * curAnimation.value,
  99. color: curColor,
  100. ));
  101. }
  102. }