You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can confirm I saw the same behavior.
For a workaround I can suggest you to call popFragment() with the same options as you call pushFragment(), so: fragNavController?.popFragment(fragment, FragNavTransactionOptions.newBuilder() .customAnimations(enterAnimation, 0, 0, exitAnimation).build())
should solve your problem.
I'm setting the animations here
fragNavController?.pushFragment( fragment, FragNavTransactionOptions.newBuilder() .customAnimations(enterAnimation, 0, 0, exitAnimation).build()
but when calling
fragNavController?.popFragment()?
the pop animation is not working.
Any ideas about it?
The text was updated successfully, but these errors were encountered: