backPresses

open override fun backPresses(): Flow<Unit>(source)

Returns a Flow that will emit Unit on every back press. While this Flow is being collected all back presses will be intercepted and none of the default back press handling happens.

When this is called multiple times only the latest caller will receive emissions.


open override fun <T> backPresses(value: T): Flow<T>(source)

Returns a Flow that will emit value on every back press. While this Flow is being collected all back presses will be intercepted and none of the default back press handling happens.

When this is called multiple times only the latest caller will receive emissions.