How does one implement expanding card animation/transition using react navigation (react-native)?

Viewed 7718

What I want to achieve is an effect similar to react-native-card-modal But I also want to change the route. The react native card modal uses the same component in which you have grow() and shrink() functions. The problem and the reason I want to avoid this way of implementing this is that I will have two levels of going inside the card and I will also have deep linking and I need to use a good navigation like react navigation for that.

I will also need to go back. Looking for an elegant solution but feel free to share any tutorials to related transitions. Thanks!

1 Answers
Related