Skip to content

Instantly share code, notes, and snippets.

@guyca
Created June 14, 2020 07:14
Show Gist options
  • Save guyca/b2493c6d28302a3bd2535be4dd3b779c to your computer and use it in GitHub Desktop.
Save guyca/b2493c6d28302a3bd2535be4dd3b779c to your computer and use it in GitHub Desktop.
Push a screen with Shared Element Transition
Navigation.push(this.props.componentId, {
component: {
Name: `MY_SCREEN`,
options: {
animations: {
push: {
sharedElementTransitions: [
{
fromId: `sourceImage`,
toId: `destinationImage`
}
]
}
}
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment