In `nav3` how do I disable entry-to-entry predicti...
# compose
u
In
nav3
how do I disable entry-to-entry predictive back animation?
Copy code
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