Halil Ozercan @halilibo.com · Nov 7

I think I finally solved it and it didn't even require a structural change. I simply changed how enter exit animation is done for the shared element so the entering view has time to prepare itself before being visible. Code in the next reply.

2 likes 1 replies

?

Replies

Halil Ozercan · Nov 7

``` enter = fadeIn(keyframes { 0f at 150 using LinearEasing 1f at 151 using LinearEasing durationMillis = 300 }), exit = fadeOut(keyframes { 1f at 150 using LinearEasing 0f at 151 using LinearEasing durationMillis = 300 }) ```