Skip to content

Instantly share code, notes, and snippets.

@SahanAmarsha
Created June 5, 2020 10:54
Show Gist options
  • Save SahanAmarsha/2fb1a0b5f228dc2bfaa82dc7f03adbb3 to your computer and use it in GitHub Desktop.
Save SahanAmarsha/2fb1a0b5f228dc2bfaa82dc7f03adbb3 to your computer and use it in GitHub Desktop.
Hot to use Fade Animations in Flutter
body: Center(
child:
FadeTransition(
opacity: _myAnimation,
child: Container(
width: 100,
height: 100,
decoration: BoxDecoration(
image: new DecorationImage(
image: new AssetImage(
'assets/images/ghost.png',
)
)
),
),
)
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment