twanschik
twanschik
I‘ve encounter a related issue without having to click fast: when using a transition animation when popping screen 2 the viewmodel gets cleaned up to early. The transition will call...
Our current workaround is to disable calling the content function on animations if the lifecycle is already destroyed: ``` content = { if (LocalSavedStateRegistryOwner.current.lifecycle.currentState != Lifecycle.State.DESTROYED) { it.Content() } },...
> So after some research I have found a working workaround for the issue that also renders the screen during the animations. There is a couple of issues at play...