Created
June 5, 2020 10:54
-
-
Save SahanAmarsha/2fb1a0b5f228dc2bfaa82dc7f03adbb3 to your computer and use it in GitHub Desktop.
Hot to use Fade Animations in Flutter
This file contains hidden or 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
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