Skip to content

Instantly share code, notes, and snippets.

@manojeeva
Created January 18, 2020 19:28
Show Gist options
  • Save manojeeva/1c8bfdb75f92315dd2ad659dde1966a1 to your computer and use it in GitHub Desktop.
Save manojeeva/1c8bfdb75f92315dd2ad659dde1966a1 to your computer and use it in GitHub Desktop.
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