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
When using navController.popFragment() with FragNavTransactionOptions.customAnimations and specifying enterAnimation, exitAnimation, popEnterAnimation, and popExitAnimation the pop animations have no effect. Instead the enter animations are used.
When using
navController.popFragment()
with FragNavTransactionOptions.customAnimations and specifying enterAnimation, exitAnimation, popEnterAnimation, and popExitAnimation the pop animations have no effect. Instead the enter animations are used.Example:
FragNavTransactionOptions.newBuilder() .customAnimations(R.anim.slide_in_from_right, R.anim.slide_out_to_left, R.anim.slide_in_from_left, R.anim.slide_out_to_right).build()
Only
R.anim.slide_in_from_right
andR.anim.slide_out_to_left
is seen in action when entering AND popping.Using FragNav 3.0.0 - worked fine on 2.4.0
This is a dealbreaker for me :(
The text was updated successfully, but these errors were encountered: