Skip to content

Instantly share code, notes, and snippets.

@mksantoki
Last active June 25, 2020 13:25
Show Gist options
  • Save mksantoki/46035ddc1ad4d12b2977e95918a013c0 to your computer and use it in GitHub Desktop.
Save mksantoki/46035ddc1ad4d12b2977e95918a013c0 to your computer and use it in GitHub Desktop.
Provide custom back navigation
requireActivity().onBackPressedDispatcher.addCallback(object :
OnBackPressedCallback(true) {
override fun handleOnBackPressed() {
requireActivity().toastGreen("Testing")
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment