Created
January 18, 2020 19:28
-
-
Save manojeeva/1c8bfdb75f92315dd2ad659dde1966a1 to your computer and use it in GitHub Desktop.
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
final double animVal = shouldAnimate ? 0 : -50; | |
return AnimatedPositioned( | |
duration: Duration(milliseconds: 500), | |
right: widget.suffix ? animVal : null, | |
top: 0, | |
left: widget.suffix ? null : animVal, | |
bottom: 0, | |
curve: curve, | |
child: Container( | |
width: 50, | |
decoration: BoxDecoration( | |
borderRadius: BorderRadius.horizontal( | |
left: Radius.circular(5), | |
), | |
color: color, | |
), | |
child: icon), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment