Last active
September 24, 2018 12:08
-
-
Save pedromassango/168b2048b8f9c2512437c36a03e9380c to your computer and use it in GitHub Desktop.
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
@override | |
Widget build(BuildContext context) { | |
return new Container( | |
color: Colors.white, | |
child: Column( | |
children: <Widget>[ | |
Spacer(), | |
Hero( /// Hero | |
tag: 'logo', | |
child: Image.asset('images/icon_like.png'), /// This is the flying widget | |
), | |
Spacer(), | |
MaterialButton(child: Text('Next Screen'), | |
textColor: Colors.white, | |
color: Colors.blue, | |
minWidth: 200.0, | |
onPressed: _nextScreen, | |
) | |
], | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment