Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Created December 22, 2019 11:43
Show Gist options
  • Save zsoltk/1bb7b803b40dc6a985365b01147aaf4c to your computer and use it in GitHub Desktop.
Save zsoltk/1bb7b803b40dc6a985365b01147aaf4c to your computer and use it in GitHub Desktop.
class ScopedBackPressHandler {
var children = mutableListOf<() -> Boolean>()
fun handle(): Boolean =
children.reversed().any { it() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment