Skip to content

Instantly share code, notes, and snippets.

@SahanAmarsha
Created June 10, 2020 13:14
Show Gist options
  • Save SahanAmarsha/1835bf702587ba30fcfb7818df0004c9 to your computer and use it in GitHub Desktop.
Save SahanAmarsha/1835bf702587ba30fcfb7818df0004c9 to your computer and use it in GitHub Desktop.
Using the Hinge Animation
body:
AnimatedBuilder(
animation: _slideAnimation,
builder: (ctx, ch) => Container(
width: 200,
height: 100,
padding: EdgeInsets.all(0),
margin: EdgeInsets.only(
left: 75,
top: _slideAnimation.value,
),
child: RotationTransition(
turns: _rotateAnimation,
child: Center(
child: Text('Animation', style: TextStyle(
fontSize: 40,
fontWeight: FontWeight.bold,
color: Color.fromRGBO(0, 0, 128, _opacityAnimation.value)
),),
),
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment