@@ -52,12 +52,12 @@ class _IconAnimationState extends State<IconAnimation>
5252 animatable: Tween <double >(begin: 0.0 , end: 34.0 ),
5353 from: Duration (milliseconds: 80 ),
5454 to: Duration (milliseconds: 200 ),
55- tag: 'share ' )
55+ tag: 'open ' )
5656 .addAnimatable (
5757 animatable: Tween <double >(begin: 0.0 , end: 34.0 ),
5858 from: Duration (milliseconds: 200 ),
5959 to: Duration (milliseconds: 300 ),
60- tag: 'open ' )
60+ tag: 'share ' )
6161 .animate (_sequenceAnimationController);
6262 _sequenceAnimationController.addListener (() {
6363 setState (() {});
@@ -135,8 +135,8 @@ class _IconAnimationState extends State<IconAnimation>
135135 _sequenceAnimationController.forward ();
136136 setState (() {
137137 _firstAnimationValueX = _sequenceAnimation['trash' ].value;
138- _secondAnimationValueX = _sequenceAnimation['share ' ].value;
139- _thirdAnimationValueX = _sequenceAnimation['open ' ].value;
138+ _secondAnimationValueX = _sequenceAnimation['open ' ].value;
139+ _thirdAnimationValueX = _sequenceAnimation['share ' ].value;
140140 });
141141
142142 // Share Icon Animation
@@ -191,8 +191,8 @@ class _IconAnimationState extends State<IconAnimation>
191191 setState (() {
192192 _rightAnimationIsCompleted = false ;
193193 _firstAnimationValueX = _sequenceAnimation['trash' ].value;
194- _secondAnimationValueX = _sequenceAnimation['share ' ].value;
195- _thirdAnimationValueX = _sequenceAnimation['open ' ].value;
194+ _secondAnimationValueX = _sequenceAnimation['open ' ].value;
195+ _thirdAnimationValueX = _sequenceAnimation['share ' ].value;
196196 });
197197 }
198198
@@ -254,11 +254,11 @@ class _IconAnimationState extends State<IconAnimation>
254254 left: _secondAnimationValueX,
255255 child: Container (
256256 decoration: BoxDecoration (
257- color: Colors .blue ,
257+ color: Colors .orange ,
258258 borderRadius: BorderRadius .circular (15.0 ),
259259 boxShadow: [
260260 BoxShadow (
261- color: Colors .blue .withOpacity (0.2 ),
261+ color: Colors .orange .withOpacity (0.2 ),
262262 blurRadius: 1.0 ,
263263 spreadRadius: 1.5 ,
264264 offset: Offset .zero,
@@ -268,7 +268,7 @@ class _IconAnimationState extends State<IconAnimation>
268268 width: _iconsCircleSize,
269269 height: _iconsCircleSize,
270270 child: Icon (
271- MdiIcons .shareVariantOutline ,
271+ MdiIcons .earth ,
272272 size: _whiteIconSize,
273273 color: Colors .white,
274274 ),
@@ -280,11 +280,11 @@ class _IconAnimationState extends State<IconAnimation>
280280 left: _thirdAnimationValueX,
281281 child: Container (
282282 decoration: BoxDecoration (
283- color: Colors .orange ,
283+ color: Colors .blue ,
284284 borderRadius: BorderRadius .circular (15.0 ),
285285 boxShadow: [
286286 BoxShadow (
287- color: Colors .orange .withOpacity (0.2 ),
287+ color: Colors .blue .withOpacity (0.2 ),
288288 blurRadius: 2.0 ,
289289 spreadRadius: 1.5 ,
290290 offset: Offset .zero,
@@ -294,7 +294,7 @@ class _IconAnimationState extends State<IconAnimation>
294294 width: _iconsCircleSize,
295295 height: _iconsCircleSize,
296296 child: Icon (
297- MdiIcons .earth ,
297+ MdiIcons .shareVariantOutline ,
298298 size: _whiteIconSize,
299299 color: Colors .white,
300300 ),
0 commit comments