Guest User

Untitled

a guest
Sep 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. @override
  2. Widget build(BuildContext context){
  3. return Scaffold(
  4. appBar: AppBar(
  5. backgroundColor: Colors.white30,
  6. elevation: 0.0,
  7. title: Text('Hero Page 2',
  8. style: TextStyle(
  9. color: Colors.black
  10. ),),
  11. ),
  12. body: Padding(
  13. padding: EdgeInsets.only(left: 32.0, top: 16.0),
  14. child: Hero( /// The Hero
  15. tag: 'logo',
  16. child: Image.asset('images/icon_like.png', /// The flying widget
  17. width: 50.0,
  18. height: 50.0,
  19. ),
  20. ),
  21. ),
  22. );
  23. }
Add Comment
Please, Sign In to add comment