navigationevent
| Latest Update | Stable Release | Release Candidate | Beta Release | Alpha Release |
|---|---|---|---|---|
| August 13, 2025 | - | - | - | 1.0.0-alpha06 |
Declaring dependencies
To add a dependency on navigationevent, you must add the Google Maven repository to your project. Read Google's Maven repository for more information.
Add the dependencies for the artifacts you need in the build.gradle file for
your app or module:
Groovy
dependencies { implementation "androidx.navigationevent:navigationevent:1.0.0-alpha06" }
Kotlin
dependencies { implementation("androidx.navigationevent:navigationevent:1.0.0-alpha06") }
For more information about dependencies, see Add build dependencies.
Feedback
Your feedback helps make Jetpack better. Let us know if you discover new issues or have ideas for improving this library. Please take a look at the existing issues in this library before you create a new one. You can add your vote to an existing issue by clicking the star button.
See the Issue Tracker documentation for more information.
There are no release notes for this artifact.
Version 1.0
Version 1.0.0-alpha06
August 13, 2025
androidx.navigationevent:navigationevent-*:1.0.0-alpha06 is released. Version 1.0.0-alpha06 contains these commits.
New Features
Passive Listeners API
You can now pass custom contextual information from any navigation host and passively listen to gesture state changes from anywhere in your UI. This enables context-aware animations for predictive back and other gesture-driven navigation.
This feature has two parts:
- Providing Info - Use
NavigationEventInfoto carry custom data. - Consuming State - Use
dispatcher.state(NavigationEventState) to observe gesture progress and context.
NavigationEventCallbacknow exposessetInfo(currentInfo, previousInfo)method to set gesture context in one call (I1d5e7, b/424470518).NavigationEventHandleradds a new overload that acceptscurrentInfoandpreviousInfo, making it the primary API for supplying context in Compose apps (I6ecd3, b/424470518).
Example:
data class MyScreenInfo(val screenName: String) : NavigationEventInfo
NavigationEventHandler(
enabled = true,
currentInfo = MyScreenInfo("Details Screen"),
previousInfo = MyScreenInfo("Home Screen")
) { /* Handle back completion */ }
NavigationEventDispatchernow exposesdispatcher.stateanddispatcher.getState<T>()(If7fae, Ia90ca, b/424470518). TheseStateFlow-based APIs let any UI observe gesture progress and contextual data without handling the event directly.
Example:
val gestureState by LocalNavigationEventDispatcherOwner.current!!
.navigationEventDispatcher
.state
.collectAsState()
val progress = gestureState.progress // Returns latestEvent.progress or 0F
when (val state = gestureState) {
is InProgress -> {
val toScreen = state.currentInfo as MyScreenInfo
val fromScreen = state.previousInfo as MyScreenInfo
println("Navigating from ${fromScreen.screenName} to ${toScreen.screenName}")
}
is Idle -> { /* Idle state */ }
}
Add
progressproperty toNavigationEventState(I7b196) that returnslatestEvent.progresswhen in progress, or0Fotherwise:val progress = state.progressAdd
NavigationEventDispatcherOwnercomposable to create, link, and dispose ofNavigationEventDispatcherinstances hierarchically. Enable dynamic control of the dispatcher's enabled state and automatic cleanup.@Composable fun Sample() { NavigationEventDispatcherOwner(enabled = true) { val localDispatcherOwner = LocalNavigationEventDispatcherOwner.current } }
API Changes
- The
isPassthroughparameter has been removed from theNavigationEventCallback. (I99028, b/424470518) NavigationEventStateconstructors are now internal. For testing, update the state (defaults toIdle) via theDirectNavigationEventInputHandler. CallhandleOnStartedorhandleOnProgressedto set state toInProgress, andhandleOnCompletedorhandleOnCancelledto return it toIdle. To updateNavigationEventInfo, useNavigationEventCallback.setInfo. (I93dca, b/424470518)- Added default parameters to
NavigationEventto allow for easier instantiation and to simplify testing which should be used in place ofTestNavigationEvent. (I5dc49, I232f4) - Added a
TestNavigationEventCallbackfor testing navigation events with specific current/previous states. (Idd22e, b/424470518) NavigationEventInputHandlerhas been made into an abstract class to replace the previousAbstractNavigationEventInputHandlerwith an implementation inDirectNavigationEventInputHandler(Iadde5, Ifed40I3897c, b/432616296, b/435416924)- The
send*functions inNavigationEventInputHandlerhave had their prefixes renamed tohandle*. (Iffcaf) OnBackInvokedInputHandlernow extends the newlyabstractNavigationInputHandler. (Ib45aa)- Changed
NavigationEventDispatcherOwnerto require a parent dispatcher where you must explicitly passnullto create a root dispatcher. (Ia6f64, b/431534103)
Bug Fixes
- Improved efficiency by avoiding collection copies in
NavigationEventDispatcher.dispose(). (I4ab09) - Fixed an issue where the
NavigationEventHandlerdid not correctly respond to changes in its enabled state. (Ia5268,I19bec, I5be5c, b/431534103)
Docs Updates
- KDocs for
NavigationEventexpanded to clarify its role as a unified event wrapper and detail property behavior across different navigation types (gestures, clicks). (I91e8d) - Updated documentation for system back handling Compose APIs (
BackHandler,PredictiveBackHandler,NavigationEventHandler) to call out behavior specifically around callback order. (I7ab94, )
Dependency Update
NavigationEventnow depends on Compose Runtime 1.9.0-beta03 which allows thenavigationevent-composeartifact to support all KMP targets. (Ia1b87)
Version 1.0.0-alpha05
July 30, 2025
androidx.navigationevent:navigationevent-*:1.0.0-alpha05 is released. Version 1.0.0-alpha05 contains these commits.
Parent-Child Hierarchy Support:
A NavigationEventDispatcher can now have parent and child dispatchers, forming a hierarchical tree structure. This enables navigation events to propagate and be managed more flexibly across complex Compose UI components by reflecting the UI’s structural hierarchy through chained dispatchers. (I194ac)
// Create a parent dispatcher that will manage navigation events at a higher level.
val parentDispatcher = NavigationEventDispatcher()
// Create a child dispatcher linked to the parent, forming a hierarchy.
val childDispatcher = NavigationEventDispatcher(parentDispatcher)
The hierarchical isEnabled property allows for top-down control of a dispatcher. When isEnabled is set to false on a dispatcher, it automatically disables all its descendant dispatchers. This feature enables entire branches of the navigation event system to be toggled off efficiently. (I9e985)
// Disabling the child dispatcher disables all its callbacks and any of its children recursively.
childDispatcher.isEnabled = false
Moreover, the isEnabled property on NavigationEventCallback now respects the enabled state of its associated dispatcher. This means a callback is considered enabled only if both the callback itself and its dispatcher (including its ancestors) are enabled, ensuring consistent hierarchical control over callback activation. (I1799a)
// Create a test callback and add it to the child dispatcher.
val callback1 = TestNavigationEventCallback(isEnabled = true)
childDispatcher.addCallback(callback1)
// Since the childDispatcher is disabled, the callback is effectively disabled as well.
assertThat(callback1.isEnabled).isFalse()
A new dispose() method has been introduced for proper cleanup of dispatchers and their children. Calling dispose() stops listeners to prevent memory leaks, recursively disposes all child dispatchers, removes all callbacks registered to the dispatcher, and unlinks it from its parent. This guarantees resources are released correctly when dispatchers are no longer needed. (I9e985)
// Dispose the child dispatcher to clean up resources.
childDispatcher.dispose()
If any public method is called on a disposed dispatcher, an IllegalStateException is thrown immediately. This prevents silent failures and helps developers identify improper usage during development. (Ic2dc3)
val callback2 = TestNavigationEventCallback()
// Attempting to use a disposed dispatcher will throw an exception.
assertThrows<IllegalStateException> {
childDispatcher.addCallback(callback2)
}
Note: We will introduce a new NavigationEventDispatcherOwner Composable that automatically manages a child dispatcher within Compose UI in aosp/3692572. However, this change did not make it into the current release cut and is planned for the next one.
Navigation Testing Library
- Add
navigationevent-testingmodule to provide dedicated testing utilities for thenavigationeventlibrary. (0e50b6) - Add
TestNavigationEventCallbackfake utility class for testing. It records callback method calls and stores receivedNavigationEventitems to support verification. (4a0246) - Add
TestNavigationEventfake utility function to createNavigationEventinstances with default values, simplifying unit tests for navigation event processing. (3b63f5) - Add
TestNavigationEventDispatcherOwnerfake utility class for testing. It tracks fallback and enabled-state-changed event counts to support interaction verification in tests. (c8753e)
API Changes
- Move
NavigationEventInputHandlerfromandroidMaintocommonMainto make it available in KMP common code. Add newpublic send*methods for dispatching events. Change dispatch functions onNavigationEventDispatcherfrompublictointernal; users must now useNavigationEventInputHandlerto send events. (Ia7114) - Rename
NavigationInputHandlertoOnBackInvokedInputHandler. (I63405)
Bug Fixes
- Refactor
NavigationEventDispatcherto reduce overhead by avoiding intermediate list allocations and improving callback dispatch performance. (I82702, I1a9d9) - Add
@FloatRangeannotations totouchX,touchY, andprogressfields inNavigationEventto enforce valid value ranges at compile time and improve API safety. (Iac0ec)
Version 1.0.0-alpha04
July 2, 2025
androidx.navigationevent:navigationevent-*:1.0.0-alpha04 is released. Version 1.0.0-alpha04 contains these commits.
Bug Fixes
- Used
implementedInJetBrainsForktonavigationevent-composeand added acommonStubstarget to match Compose conventions. Change requested by JetBrains. (f60c79) - Fixed application of the Compose compiler plugin for Kotlin/Native to ensure correct stub generation. No impact on public APIs or behavior. (1890c9)
Version 1.0.0-alpha03
June 18, 2025
androidx.navigationevent:navigationevent-*:1.0.0-alpha03 is released. Version 1.0.0-alpha03 contains these commits.
New Features
- Introduced a new
navigationevent-composemodule to support Jetpack Compose features in thenavigationeventlibrary. (980d78) NavigationEventCompose has added a newLocalNavigationEventDispatcherOwnerlocal composition. It returns a nullable value to better determine whether it is available in the current composition.NavigationEventHandlerwill now throw an error if the underlying owner is not found. (62ffda)NavigationEventCompose has added a newNavigationEventHandlerComposable to handle (predictive back gesture) events. It provides aFlowofNavigationEventobjects that must be collected in the suspending lambda you provide c42ba6 :
NavigationEventHandler { progress: Flow<NavigationEvent> ->
// This block is executed when the back gesture begins.
try {
progress.collect { backEvent ->
// Handle gesture progress updates here.
}
// This block is executed if the gesture completes successfully.
} catch (e: CancellationException) {
// This block is executed if the gesture is cancelled
throw e
} finally {
// This block is executed either the gesture is completed or cancelled
}
}
API Changes
- Each
NavigationEventCallbackcan now be registered with only oneNavigationEventDispatcherat a time; adding it to multiple dispatchers throws anIllegalStateException. Note that this behavior differs fromOnBackPressedDispatcher, which allows multiple dispatchers. (e82c19) - Made
isPassThroughavalto prevent mutation during navigation, which could breakNavigationEvent's dispatching. (I0b287)
Version 1.0.0-alpha02
June 4, 2025
androidx.navigationevent:navigationevent-*:1.0.0-alpha02 is released. Version 1.0.0-alpha02 contains these commits.
API Changes
- Replace
NavigationEventDispatcher's secondary constructor with default arguments. (I716a0) - Remove priority property from
NavigationEventCallback. Pass priority toNavigationEventDispatcher.addCallback()instead. (I13cae)
Bug Fixes
- Fixed a
ConcurrentModificationExceptionthat could occur whenNavigationEventCallback.remove()was called due to simultaneously modifying the internal list of closeables. (b/420919815)
Version 1.0.0-alpha01
May 20, 2025
androidx.navigationevent:navigationevent-*:1.0.0-alpha01 is released. Version 1.0.0-alpha01 contains these commits.
New Features
- The
androidx.navigationeventlibrary provides a KMP-first API for handling system back as well as Predictive Back. TheNavigationEventDispatcherserves as a common APIs for registering one or moreNavigationEventCallbackinstances for receiving system back events. - This layer sits below the previously released APIs in
androidx.activityand aims to be a less opinionated replacement for using the Activity APIs in higher level components or directly using the Android frameworkOnBackInvokedDispatcherAPIs. Theandroidx.activityAPIs have been rewritten on top of the Navigation Event APIs as part of Activity 1.12.0-alpha01.