ursus
05/07/2026, 7:14 PMnav3 how do I disable entry-to-entry predictive back animation?
predictivePopTransitionSpec = {
ContentTransform(
targetContentEnter = EnterTransition.None,
initialContentExit = ExitTransition.None,
sizeTransform = null,
)
}
this is what I have but it sort of jumps to final position after threshold, looks weird
I want the behavior of say play store, i.e. to predictive back in activity-to-launcher, but not between screens within activity
android:enableOnBackInvokedCallback="false" disables it completely, even in the activity-to-launcher case