Skip to content

Instantly share code, notes, and snippets.

@lwinged
Created May 6, 2019 16:38
Show Gist options
  • Save lwinged/671d9245f67224f28c40f6787c39bee7 to your computer and use it in GitHub Desktop.
Save lwinged/671d9245f67224f28c40f6787c39bee7 to your computer and use it in GitHub Desktop.
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