Created
May 6, 2019 16:38
-
-
Save lwinged/671d9245f67224f28c40f6787c39bee7 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
ImageHero extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Hero(tag: tag, child: ...); | |
}} | |
//source Screen | |
ImageHero.fromImage( | |
tag: property.id, //same Id | |
image: property.thumb, | |
), | |
//destination Screen | |
ImageHero.fromImage( | |
tag: property.id, //same Id | |
image: property.image ...), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment